mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-10 19:58:00 +01:00
19 lines
385 B
TypeScript
19 lines
385 B
TypeScript
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 };
|