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