mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-25 22:12:12 +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 };
|