Components
Animated three-dot loading indicator with staggered blinking dots that inherit the current text color.
Loading preview...
import { Dots } from "@/components/ui/dots";
export default function DotsDemo() {
return (
<div className="flex min-h-[240px] w-full items-center justify-center bg-background text-foreground">
<Dots className="size-10 text-primary" />
</div>
);
}