Components
Loading preview...
Here is Switch component
npx shadcn@latest add https://21st.dev/r/anubra266/switch-1"use client";
import { Switch } from "@ark-ui/react/switch";
export default function SwitchWithLabel() {
return (
<div className="bg-white dark:bg-gray-800 w-full px-4 py-12 rounded-xl flex items-center justify-center">
<Switch.Root className="flex items-center gap-2">
<Switch.Control className="relative inline-flex w-11 p-0.5 items-center rounded-full bg-gray-300 transition-colors duration-200 ease-in-out data-[state=checked]:bg-blue-500 data-focus-visible:ring-2 data-focus-visible:ring-gray-300/50 data-[state=checked]:data-focus-visible:ring-blue-500/50 dark:bg-gray-600 dark:data-[state=checked]:bg-blue-500">
<Switch.Thumb className="w-5 h-5 rounded-full bg-white shadow-sm transition-transform duration-200 ease-in-out data-[state=checked]:translate-x-full" />
</Switch.Control>
<Switch.Context>
{(api) => (
<Switch.Label className="text-sm font-medium text-gray-900 dark:text-gray-100">
{api.checked ? "On" : "Off"}
</Switch.Label>
)}
</Switch.Context>
<Switch.HiddenInput />
</Switch.Root>
</div>
);
}