Components
An animated dot-matrix loading spinner where a plasma-like comet sweep and pulsing core move through a circular mask.
Loading preview...
"use client";
import { DotmCircular3 } from "@/components/ui/dotm-circular-3";
export default function DotmCircular3Demo() {
return (
<div className="flex min-h-[320px] w-full items-center justify-center bg-background text-foreground">
<div className="flex flex-col items-center gap-6">
<DotmCircular3 size={80} dotSize={10} />
<p className="text-sm text-muted-foreground">Loading…</p>
</div>
</div>
);
}