/** * The class name contract for the checkbox component */ export interface CheckboxClassNameContract { /** * The root of the checkbox component */ checkbox?: string; /** * The checkbox input element */ checkbox_input?: string; /** * The label associated with the checkbox */ checkbox_label?: string; /** * The checkbox state indicator */ checkbox_stateIndicator?: string; /** * The disabled state modifier */ checkbox__disabled?: string; /** * The checked state modifier */ checkbox__checked?: string; /** * The indeterminate state modifer */ checkbox__indeterminate?: string; }