import React from 'react' import { ViewStyle } from 'react-native' import Svg, { Path } from 'react-native-svg' interface Props { width?: number height?: number color?: string style?: ViewStyle } export default function Leaf({ width = 296, height = 177, style }: Props) { return ( ) }