Components
A loading indicator of dots that bounce up and down in a staggered phase, for playful in-progress states.
Loading preview...
import { BobbingDots } from "@/components/ui/bobbing-dots";
export default function BobbingDotsDemo() {
return (
<div className="flex min-h-[240px] w-full items-center justify-center bg-background text-foreground">
<BobbingDots className="w-16" />
</div>
);
}