export type Checkbox_StyleProps = { /** ## Checkbox * * The `z-checkbox` attribute setted to `default` will inject the z-checkbox styling * for `type="checkbox"` inputs * * * --- * ### Attributes: * * - `disabled`: _( boolean )_ blocks the interaction with the component. * - `checked`: _( boolean )_ sets the checkbox as checked. * * --- * ### Examples: * - `default`: * ```html * * ``` * ![example_1](./atoms/Checkbox/Checkbox.png) * * - `checked`: * ```html * * ``` * ![example_2](./atoms/Checkbox/CheckboxChecked.png) * * --- * ### References: * - #### [![](./SB.png) Documentation](./atoms/checkbox) */ 'z-checkbox'?: true | ''; };