23 lines
875 B
React
23 lines
875 B
React
|
|
import * as SwitchPrimitive from '@radix-ui/react-switch';
|
||
|
|
import { cn } from '@/lib/utils';
|
||
|
|
|
||
|
|
function Switch({ className, ...props }) {
|
||
|
|
return (
|
||
|
|
<SwitchPrimitive.Root
|
||
|
|
className={cn(
|
||
|
|
'peer inline-flex h-5 w-9 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-all focus-visible:outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-muted',
|
||
|
|
className
|
||
|
|
)}
|
||
|
|
{...props}
|
||
|
|
>
|
||
|
|
<SwitchPrimitive.Thumb
|
||
|
|
className={cn(
|
||
|
|
'pointer-events-none block h-4 w-4 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-4 data-[state=unchecked]:translate-x-0'
|
||
|
|
)}
|
||
|
|
/>
|
||
|
|
</SwitchPrimitive.Root>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export { Switch };
|