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