import React from "react"; import Svg, { Path } from "react-native-svg"; interface HeartIconProps { color?: string; size?: number; } const HeartIcon: React.FC = ({ color = "#000", size = 20 }) => ( ); export default HeartIcon;