Animated dot-matrix loading spinner whose binary-style opacity tiers pulse in modular steps so only a few cells peak at once, producing a crisp coded circular bloom.
import { DotmCircular10 } from "@/components/ui/dotm-circular-10"; export default function DotmCircular10Demo() { return ( <div className="flex min-h-[360px] w-full items-center justify-center bg-background text-foreground"> <DotmCircular10 size={140} dotSize={18} /> </div> ); }