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