UNPKG

@uiw/react-native

Version:
14 lines (13 loc) 423 B
import React from 'react'; import { KeyType } from '../types'; import { RadioProps } from '../../Radio'; interface FormRadioProps extends RadioProps { value?: KeyType; onChange?: (value: KeyType) => void; options?: Array<{ label: string; value: KeyType; }>; } declare const FormRadio: ({ value, onChange, options, ...others }: FormRadioProps) => React.JSX.Element; export default FormRadio;