export type Switch_StyleProps = { /** ## Switch * * The `z-switch` attribute setted to `default` will inject the z-switch 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/Switch/Switch.png) * * - `checked`: * ```html * * ``` * ![example_2](./atoms/Switch/SwitchChecked.png) * * --- * ### References: * - #### [![](./SB.png) Documentation](./atoms/switch) */ 'z-switch'?: true | ''; };