@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
11 lines • 596 B
TypeScript
import { CheckboxProps as DefaultCheckboxProps } from 'antd';
import React from 'react';
import { TypographyTextProps } from '../Typography';
type CondoCheckboxProps = {
label?: string;
labelProps?: TypographyTextProps;
};
export type CheckboxProps = Pick<DefaultCheckboxProps, 'autoFocus' | 'defaultChecked' | 'disabled' | 'onChange' | 'indeterminate' | 'checked' | 'children' | 'id' | 'className' | 'onMouseLeave' | 'onMouseEnter' | 'tabIndex' | 'value'> & CondoCheckboxProps;
declare const Checkbox: React.FC<CheckboxProps>;
export { Checkbox, };
//# sourceMappingURL=checkbox.d.ts.map