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