Components
An animated typing indicator with vertically bouncing dots that signals live input in chat, search, and collaborative editing surfaces.
Loading preview...
import { Typing } from "@/components/ui/typing";
export default function TypingDemo() {
return (
<div className="flex min-h-64 w-full items-center justify-center bg-background text-foreground">
<Typing className="w-10" />
</div>
);
}