/// import { IconProps } from './Icon'; interface Props extends IconProps { favorite: boolean; } export default function FavoriteIcon({ className, favorite, fill, ...iconProps }: Props): JSX.Element; export {};