interface HeartIconType { className?: string; onClick?: () => void; } const HeartIcon = ({ className, onClick }: HeartIconType) => { return ( ); }; export default HeartIcon;