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