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