import { FC } from 'react'; interface IconBellBingProps { className?: string; } const IconBellBing: FC = ({ className }) => { return ( ); }; export default IconBellBing;