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