Components
An animated dot-matrix loading indicator whose mirrored braille dot pairs pulse from the top and bottom toward the center with a connective center-column accent.
Loading preview...
"use client";
import { DotmCircular18 } from "@/components/ui/dotm-circular-18";
export default function DotmCircular18Demo() {
return (
<div className="flex min-h-[260px] w-full items-center justify-center bg-background text-foreground">
<DotmCircular18 size={108} dotSize={16} />
</div>
);
}