import React from 'react'; import { Path, Mask, Rect } from 'react-native-svg'; import type { IllustrationSvgProps } from '../types'; import BaseSvg from '../BaseSvg'; const Boom = ({ stroke, fill, testID, width, height, }: IllustrationSvgProps) => { return ( ); }; export default Boom;