import * as CheckboxPrimitive from '@rn-primitives/checkbox'; import * as React from 'react'; import { Platform } from 'react-native'; import { Check } from '@/lib/icons/Check'; import { cn } from '@/lib/utils'; const Checkbox = React.forwardRef( ({ className, ...props }, ref) => { return ( ); } ); Checkbox.displayName = CheckboxPrimitive.Root.displayName; export { Checkbox };