Components
Loading preview...
A simple animated loading spinner built on the Lucide Loader2 icon.
npx shadcn@latest add https://21st.dev/r/coss.com/spinnerimport { Spinner } from "@/components/ui/component";
export default function Particle() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background">
<Spinner />
</div>
);
}