Components
A compact loading spinner of three dots rotating around a shared center, sized for buttons, badges, and table rows.
Loading preview...
import { TripleDotSpinner } from "@/components/ui/triple-dot-spinner";
export default function TripleDotSpinnerDemo() {
return (
<div className="flex min-h-[220px] w-full items-center justify-center bg-background text-foreground">
<span className="inline-flex size-5 items-center justify-center text-foreground">
<TripleDotSpinner className="size-1.5" />
</span>
</div>
);
}