UNPKG

antd-mobile

Version:

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

13 lines (12 loc) 355 B
/// <reference types="react" /> import React from 'react'; import { CheckboxProps } from './PropsType'; export default class Checkbox extends React.Component<CheckboxProps, any> { static CheckboxItem: any; static AgreeItem: any; static defaultProps: { prefixCls: string; wrapLabel: boolean; }; render(): JSX.Element; }