Components
An animated bouncing dots loading indicator with configurable size, count, gap, color and speed.
Loading preview...
import { LoaderDots } from "@/components/ui/loaders-dots";
export default function LoaderDotsDemo() {
return (
<div className="flex min-h-[300px] w-full items-center justify-center bg-background text-foreground">
<LoaderDots size={22} gap={16} />
</div>
);
}