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