import { cn } from '@/lib/utils'; import * as SwitchPrimitives from '@rn-primitives/switch'; import { Platform } from 'react-native'; function Switch({ className, ...props }: SwitchPrimitives.RootProps & React.RefAttributes) { return ( ); } export { Switch };