UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

12 lines (11 loc) 506 B
import * as React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { CheckboxStyle } from '../checkbox/style'; import { WithThemeStyles } from '../style'; import { RadioPropsType } from './PropsType'; export interface RadioProps extends RadioPropsType, WithThemeStyles<CheckboxStyle> { style?: StyleProp<ViewStyle>; children?: React.ReactNode; } declare const AntmRadio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<unknown>>; export default AntmRadio;