waveterm/frontend/app/element/typingindicator.tsx

22 lines
462 B
TypeScript
Raw Normal View History

// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
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 };