Components
An animated pixel-style diamond loading spinner with sequentially fading segments that indicate a busy or loading state.
Loading preview...
import { Diamond } from "@/components/ui/diamond";
export default function DiamondDemo() {
return (
<div className="flex min-h-64 w-full items-center justify-center bg-background text-foreground">
<Diamond className="size-10" />
</div>
);
}