@luscii-healthtech/web-ui 0.0.0-alpha.ccdf511 → 0.0.0-alpha.e75c957

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.
@@ -4208,7 +4208,7 @@ const TabbarItem = ({ title, index, isSelected, onSelect, className, badgeCount
4208
4208
  return React__namespace.default.createElement(
4209
4209
  "button",
4210
4210
  { className: itemClassName, onClick: handleTabClick, "data-test-id": dataTestId },
4211
- typeof title === "string" && React__namespace.default.createElement(Text, { variant: "strong", color: "current", inline: true, className: "ui-leading-inherit" }, title),
4211
+ typeof title === "string" ? React__namespace.default.createElement(Text, { variant: "strong", color: "current", inline: true, className: "ui-leading-inherit" }, title) : title,
4212
4212
  badgeCount > 0 && React__namespace.default.createElement(Badge, { className: "ui-ml-1", badgeCount }),
4213
4213
  isLoading && React__namespace.default.createElement(LoadingIndicator, { asSpinner: true, spinnerColor: "gray", className: "ui-w-6" })
4214
4214
  );