import * as React from 'react' import Svg, { ClipPath, Defs, G, LinearGradient, Path, RadialGradient, Stop, SvgProps, } from 'react-native-svg' interface Props { size?: number testID?: string // Setting this to SvgProps['color'] for now as the Colors enum is not a part of the branding folder yet. color?: SvgProps['color'] } export default function LogoHeart({ size = 32, testID, color }: Props) { return ( ) }