@linzjs/lui 16.2.9 → 16.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/lui.esm.js CHANGED
@@ -873,8 +873,7 @@ var LuiCheckboxInput = function (props) {
873
873
  React__default.createElement("input", __assign({ className: clsx('LuiCheckboxInput-input'), id: id, type: "checkbox", value: props.value, onChange: props.onChange, checked: props.isChecked, disabled: props.isDisabled }, props.inputProps)),
874
874
  React__default.createElement("span", { className: "LuiCheckboxInput-label" },
875
875
  props.label,
876
- ' ',
877
- React__default.createElement(LuiIcon, { name: "ic_check", size: "md", alt: "Check", className: "LuiCheckboxInput-labelCheck" }))),
876
+ React__default.createElement(LuiIcon, { name: props.isIndeterminate ? 'ic_zoom_out' : 'ic_check', size: "md", alt: props.isIndeterminate ? 'Indeterminate Check' : 'Check', className: "LuiCheckboxInput-labelCheck" }))),
878
877
  props.error && (React__default.createElement(LuiError, { className: "LuiCheckboxInput", error: props.error }))));
879
878
  };
880
879