import * as SwitchPrimitive from '@radix-ui/react-switch'; import type { ComponentProps } from 'react'; import { cn } from '@/lib/utils'; function Switch({ className, ...props }: ComponentProps) { return ( ); } export { Switch };