Components
Loading preview...
A loading spinner with rotating bars animation.
npx shadcn@latest add https://21st.dev/r/tom_ui/bars-spinnerimport { BarsSpinner } from "@/components/ui/bars-spinner"
export default function BarsSpinnerDemo() {
return (
<div className="flex items-center justify-center min-h-[400px] p-8">
<BarsSpinner>
Hello, World!
</BarsSpinner>
</div>
)
}