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