epn-ui
Version:
Дизайн система кабинета ВМ
17 lines (16 loc) • 637 B
TypeScript
import type { ReactNode } from 'react';
import type { CheckboxProps } from 'antd/es/checkbox';
export interface IBaseCheckboxProps {
autoFocus?: CheckboxProps['autoFocus'];
checked?: CheckboxProps['checked'];
defaultChecked?: CheckboxProps['defaultChecked'];
disabled?: CheckboxProps['disabled'];
indeterminate?: CheckboxProps['indeterminate'];
className?: CheckboxProps['className'];
style?: CheckboxProps['style'];
children?: CheckboxProps['children'];
id?: CheckboxProps['id'];
onChange?: CheckboxProps['onChange'];
label?: string | ReactNode;
defaultValue?: boolean;
}