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