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