antd-mobile-alita
Version:
基于 React 的移动设计规范实现
17 lines (16 loc) • 457 B
TypeScript
import * as React from 'react';
import { RadioPropsType } from './PropsType';
export interface RadioProps extends RadioPropsType {
prefixCls?: string;
listPrefixCls?: string;
className?: string;
style?: React.CSSProperties;
}
export default class Radio extends React.Component<RadioProps, any> {
static RadioItem: any;
static defaultProps: {
prefixCls: string;
wrapLabel: boolean;
};
render(): JSX.Element;
}