import React from 'react' import Svg, { Path } from 'react-native-svg' interface Props { width?: number height?: number testID?: string } export default function Celebration({ width = 58, height = 53, testID }: Props) { return ( ) }