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