Components
Loading preview...
Radio button animated
npx shadcn@latest add https://21st.dev/r/minhxthanh/radio-buttonimport Radio from "@/components/ui/radio-button";
export default function DemoOne() {
return (
<main className="min-h-screen bg-gradient-to-br from-slate-900 via-slate-800 to-slate-900 w-full">
<Radio onChange={(value) => console.log("Selected:", value)} />
</main>
)
}