An animated dot-matrix loading spinner whose lit dots trace a clockwise snake route column by column across a 5x5 grid.
import { DotmSquare2 } from "@/components/ui/dotm-square-2"; export default function Default() { return ( <div className="flex min-h-[320px] w-full items-center justify-center bg-background text-foreground"> <DotmSquare2 size={96} dotSize={12} /> </div> ); }