Components
An animated SVG loading spinner that morphs a circle into an infinity shape and back in a continuous loop.
Loading preview...
import { MorphingInfinity } from "@/components/ui/morphing-infinity";
export default function MorphingInfinityDemo() {
return (
<div className="flex min-h-64 items-center justify-center">
<MorphingInfinity className="size-16 text-foreground" />
</div>
);
}