import React, { PropsWithChildren } from 'react'; import * as RadioGroupPrimitive from '@rn-primitives/radio-group'; import { View } from 'react-native'; import { cn } from '../../lib/utils'; import { Label } from './label'; function RadioGroup({ className, ...props }: RadioGroupPrimitive.RootProps & { ref?: React.RefObject; }) { return ( ); } function RadioGroupItem({ className, ...props }: RadioGroupPrimitive.ItemProps & { ref?: React.RefObject; }) { return ( ); } function RadioGroupItemWithLabel({ value, children, }: PropsWithChildren<{ value: string; }>) { return ( ); } export { RadioGroup, RadioGroupItem, RadioGroupItemWithLabel };