Components
A dot-matrix loading spinner where three dots chase around a triangle outline leaving short fading trails while the dots stay fixed in place.
Loading preview...
import { DotmTriangle4 } from "@/components/ui/dotm-triangle-4";
export default function Default() {
return (
<div className="flex min-h-[320px] w-full items-center justify-center bg-background text-foreground">
<DotmTriangle4 size={200} dotSize={11} />
</div>
);
}