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