Components
An animated dot-matrix loading spinner whose active dots trace a clockwise spiral inward across a 5×5 grid.
Loading preview...
import { DotmSquare3 } from "@/components/ui/dotm-square-3";
export default function DotmSquare3Demo() {
return (
<div className="flex min-h-[320px] w-full items-center justify-center bg-background text-foreground">
<DotmSquare3 size={110} dotSize={12} />
</div>
);
}