import React from 'react'; type FavoriteIconProps = { variant: 'filled' | 'outlined'; color?: string; width?: number; height?: number; }; const FavoriteIcon = ({ variant, color = '#000000', width = 24, height = 24, }: FavoriteIconProps) => ( {variant === 'outlined' ? ( ) : ( )} ); export default FavoriteIcon;