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 Palm({ width = 571, height = 320, style }: Props) { return ( ) }