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