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