'use client'; import * as React from 'react'; import * as SwitchPrimitive from '@radix-ui/react-switch'; import { cn } from '@/lib/utils'; const Switch = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); Switch.displayName = SwitchPrimitive.Root.displayName; export { Switch };