UNPKG

antd-mobile-rn

Version:

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

19 lines (18 loc) 638 B
import React from 'react'; import { ImageStyle, StyleProp, ViewStyle } from 'react-native'; import { RadioItemPropsType } from './PropsType'; import { IRadioStyle } from './style/index.native'; export interface RadioItemNativeProps extends RadioItemPropsType { styles?: IRadioStyle; style?: StyleProp<ViewStyle>; radioStyle?: StyleProp<ImageStyle>; } export default class RadioItem extends React.Component<RadioItemNativeProps, any> { static defaultProps: { styles: { [x: string]: import("react-native").RegisteredStyle<any>; }; }; handleClick: () => void; render(): JSX.Element; }