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