Components
An animated dot-matrix loading indicator where a stepped snake traces a serpentine zigzag path with a soft trailing tail across a triangle-shaped grid.
Loading preview...
import { DotmTriangle13 } from "@/components/ui/dotm-triangle-13";
export default function DotmTriangle13Demo() {
return (
<div className="flex min-h-[320px] w-full items-center justify-center bg-background text-foreground">
<DotmTriangle13
size={360}
dotSize={30}
opacityBase={0.35}
opacityMid={0.6}
opacityPeak={1}
/>
</div>
);
}