interface HeartIconProps { isFilled?: boolean; } const HeartIcon = ({ isFilled = false }: HeartIconProps) => { return ( ); }; export default HeartIcon;