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