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