UNPKG

antd-mobile

Version:

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

12 lines (11 loc) 316 B
/// <reference types="react" /> import React from 'react'; import { RadioProps } from './PropsType'; export default class Radio extends React.Component<RadioProps, any> { static RadioItem: any; static defaultProps: { prefixCls: string; wrapLabel: boolean; }; render(): JSX.Element; }