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