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