waveterm/frontend/app/element/typingindicator.tsx
Evan Simkowitz b51ff834b2
Happy new year! (#1684)
Update all 2024 references to 2025
2025-01-04 20:56:57 -08:00

22 lines
462 B
TypeScript

// Copyright 2025, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
import { clsx } from "clsx";
import "./typingindicator.scss";
type TypingIndicatorProps = {
className?: string;
};
const TypingIndicator = ({ className }: TypingIndicatorProps) => {
return (
<div className={clsx("typing", className)}>
<span></span>
<span></span>
<span></span>
</div>
);
};
export { TypingIndicator };