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'; function Checkbox({ className, ...props }: CheckboxPrimitive.RootProps & { ref?: React.RefObject; }) { return ( ); } export { Checkbox };