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