waveterm/frontend/app/element/typingindicator.tsx

19 lines
385 B
TypeScript
Raw Normal View History

2024-07-03 23:32:55 +02:00
import { clsx } from "clsx";
import "./typingindicator.less";
type TypingIndicatorProps = {
className?: string;
};
const TypingIndicator = ({ className }: TypingIndicatorProps) => {
return (
<div className={clsx("typing", className)}>
<span></span>
<span></span>
<span></span>
</div>
);
};
export { TypingIndicator };