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