import { FC } from 'react'; interface IconCoffeeProps { className?: string; } const IconCoffee: FC = ({ className }) => { return ( ); }; export default IconCoffee;