@commonsku/styles 1.17.18 → 1.17.19

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/index.mjs CHANGED
@@ -3814,7 +3814,7 @@ var LabeledIconInput = React.forwardRef(function (_a, ref) {
3814
3814
  var labelWithAction = props.password ? React.createElement("div", null,
3815
3815
  label,
3816
3816
  React.createElement("div", { style: { width: 24, float: 'right' }, onClick: function () { return setShowPassword(function (s) { return !s; }); } },
3817
- React.createElement(EyeIcon, { hide: showPassword, cursor: "pointer" }))) : React.createElement("div", null, label);
3817
+ React.createElement(EyeIcon, { hide: showPassword, cursor: "pointer" }))) : React.createElement(React.Fragment, null, label);
3818
3818
  return (React.createElement("div", { style: containerStyle },
3819
3819
  label ? React.createElement(Label, { htmlFor: name, style: __assign(__assign({}, (!labelOnTop ? {} : { display: 'block' })), { fontFamily: "'skufont-medium', sans-serif", lineHeight: '24px', fontSize: '16px', color: getThemeColor(props, 'neutrals.100') }) },
3820
3820
  labelWithAction,