antd-mobile-alita
Version:
基于 React 的移动设计规范实现
19 lines (18 loc) • 518 B
TypeScript
import * as React from 'react';
import { CheckboxPropsType } from './PropsType';
export interface CheckboxProps extends CheckboxPropsType {
prefixCls?: string;
className?: string;
name?: string;
wrapLabel?: boolean;
style?: React.CSSProperties;
}
export default class Checkbox extends React.Component<CheckboxProps, any> {
static CheckboxItem: any;
static AgreeItem: any;
static defaultProps: {
prefixCls: string;
wrapLabel: boolean;
};
render(): JSX.Element;
}