Animated dot-matrix loading spinner where two counter-rotating rings of dots orbit around a still center.
"use client"; import { DotmSquare4 } from "@/components/ui/dotm-square-4"; export default function Default() { return ( <div className="flex min-h-[320px] w-full items-center justify-center bg-background text-foreground"> <DotmSquare4 size={96} dotSize={12} /> </div> ); }