Components
An animated dot-matrix loading spinner where an off-center orbiting point traces a phase-shifted loop, creating a drifting orbital glow inside a circular dot grid.
Loading preview...
import { DotmCircular6 } from "@/components/ui/dotm-circular-6";
export default function DotmCircular6Demo() {
return (
<div className="flex min-h-[320px] w-full items-center justify-center rounded-xl border bg-background text-foreground">
<DotmCircular6 size={48} dotSize={6} speed={1.6} />
</div>
);
}