Components
An ASCII block loading spinner where shaded square glyphs chase each other around a square path.
Loading preview...
import { SquareSnake } from "@/components/ui/square-snake";
export default function SquareSnakeDemo() {
return (
<div className="flex min-h-[200px] items-center justify-center">
<SquareSnake />
</div>
);
}