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