'use client' import * as SwitchPrimitives from '@radix-ui/react-switch' import { twMerge } from 'tailwind-merge' import { forwardRef, ElementRef, ComponentPropsWithoutRef } from 'react' const Switch = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) Switch.displayName = SwitchPrimitives.Root.displayName export { Switch }