import { clsx } from "clsx"; import "./typingindicator.less"; type TypingIndicatorProps = { className?: string; }; const TypingIndicator = ({ className }: TypingIndicatorProps) => { return (
); }; export { TypingIndicator };