Components
A compact loading spinner with two markers orbiting a center dot in a half-cycle offset for balanced circular motion.
Loading preview...
import { TwinOrbit } from "@/components/ui/twin-orbit";
export default function TwinOrbitDemo() {
return (
<div className="flex min-h-[240px] w-full items-center justify-center bg-background text-foreground">
<TwinOrbit className="size-8" />
</div>
);
}