antd-mobile
Version:
基于 React 的移动设计规范实现
18 lines (17 loc) • 401 B
TypeScript
import * as React from 'react';
export interface RadioProps {
/** web only */
prefixCls?: string;
/** web only */
listPrefixCls?: string;
/** web only */
className?: string;
/** web only */
name?: string;
style?: React.CSSProperties;
defaultChecked?: boolean;
checked?: boolean;
disabled?: boolean;
onChange?: Function;
}
export default RadioProps;