UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

20 lines (19 loc) 430 B
export interface RadioProps { style?: any; defaultChecked?: boolean; checked?: boolean; disabled?: boolean; onChange?: Function; /** web only */ prefixCls?: string; listPrefixCls?: string; className?: string; name?: string; wrapLabel?: boolean; /** rn only**/ styles?: any; } export interface RadioItemProps extends RadioProps { radioStyle?: any; radioProps?: Object; }