import * as React from 'react' import * as SwitchPrimitives from '@radix-ui/react-switch' import { cn } from '@/lib/utils' export const Switch = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function Switch({ className, ...props }, ref) { return ( ) })