Components
An animated spinning spokes loading indicator rendered as a self-contained SVG spinner.
Loading preview...
import { Spokes } from "@/components/ui/spokes";
export default function SpokesDemo() {
return (
<div className="flex min-h-[300px] w-full items-center justify-center">
<Spokes className="size-10 text-foreground" />
</div>
);
}