import { FC } from 'react'; interface IconRouterProps { className?: string; fill?: boolean; } const IconRouter: FC = ({ className, fill = false }) => { return ( <> {fill ? ( ) : ( )} ); }; export default IconRouter;