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