Components
Animated dot-matrix loader where alternating columns of dots snake up and down in opposite directions.
Loading preview...
"use client";
import { DotmSquare6 } from "@/components/ui/dotm-square-6";
export default function Default() {
return (
<div className="flex min-h-[320px] w-full items-center justify-center bg-background text-foreground">
<DotmSquare6 size={96} dotSize={12} />
</div>
);
}