@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
17 lines (16 loc) • 366 B
TypeScript
export interface RadioPropsType {
defaultChecked?: boolean;
checked?: boolean;
disabled?: boolean;
onChange?: (e: {
target: {
checked: boolean;
};
}) => void;
name?: string;
wrapLabel?: boolean;
}
export interface RadioItemPropsType extends RadioPropsType {
radioProps?: object;
onPress?: () => any;
}