UNPKG

580 BTypeScriptView Raw
1import React from 'react';
2import { CheckboxProps } from './Checkbox';
3import { CheckboxItemPropsType } from './PropsType';
4export interface CheckboxItemProps extends CheckboxItemPropsType {
5 listPrefixCls?: string;
6 prefixCls?: string;
7 className?: string;
8 name?: string;
9 wrapLabel?: boolean;
10 checkboxProps?: CheckboxProps;
11}
12export default class CheckboxItem extends React.Component<CheckboxItemProps, any> {
13 static defaultProps: {
14 prefixCls: string;
15 listPrefixCls: string;
16 checkboxProps: {};
17 };
18 render(): JSX.Element;
19}