Components
A monospace ASCII block loading indicator that traces an infinity-shaped path around two squares.
Loading preview...
import { InfinitySquareSnake } from "@/components/ui/infinity-square-snake";
export default function Default() {
return (
<div className="flex min-h-[300px] w-full items-center justify-center">
<InfinitySquareSnake />
</div>
);
}