@uiw/react-native
Version:
UIW for React Native
14 lines (13 loc) • 422 B
TypeScript
/// <reference types="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) => JSX.Element;
export default FormRadio;