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