Components
A HeroUI spinner — a lightweight animated loading indicator for buttons, panels, and full-page states. Built on HeroUI with current/accent/success/warning/danger colors and sm/md/lg/xl sizes.
Loading preview...
"use client"
import { Spinner } from "@/components/ui/heroui-spinner"
export default function Default() {
return (
<div className="flex w-full items-center justify-center p-10">
<Spinner />
</div>
)
}