import { FC } from 'react'; interface IconCalendarProps { className?: string; } const IconCalendar: FC = ({ className }) => { return ( ); }; export default IconCalendar;