UNPKG

react-components-design-system

Version:

React UI component for design system FIS ES PB5

20 lines (19 loc) 662 B
import "./Checkbox.scss"; export interface CheckboxProps { /**Handle change value checkbox */ onChange?: (value: boolean) => void; /**Specifies whether the checkbox is selected */ checked?: boolean; /**True to not allow change value */ disabled?: boolean; /**Label of this checkbox item */ label?: string; /**Type read only is true */ readOnly?: boolean; /**Max length of label checkbox */ maxLengthItem?: number; /**The indeterminate checked state of checkbox */ indeterminate?: boolean; } declare function Checkbox(props: CheckboxProps): import("react/jsx-runtime").JSX.Element; export default Checkbox;