@sikka/hawa 0.42.10-next → 0.42.11-next

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.
@@ -1119,12 +1119,19 @@ var SidebarItem = ({
1119
1119
  "span",
1120
1120
  {
1121
1121
  className: cn(
1122
- "hawa-transition-all",
1122
+ "hawa-transition-all hawa-flex hawa-flex-row hawa-items-center hawa-gap-2 hawa-whitespace-nowrap",
1123
1123
  isOpen ? "hawa-opacity-100" : "hawa-opacity-0"
1124
1124
  )
1125
1125
  },
1126
1126
  item.label,
1127
- item.badge && /* @__PURE__ */ React11.createElement(Chip, { label: item.badge.label, color: "hyper", size: "small" })
1127
+ item.badge && /* @__PURE__ */ React11.createElement(
1128
+ Chip,
1129
+ {
1130
+ label: item.badge.label,
1131
+ color: item.badge.color,
1132
+ size: "small"
1133
+ }
1134
+ )
1128
1135
  )
1129
1136
  )
1130
1137
  ),
@@ -1166,7 +1173,7 @@ var SidebarItem = ({
1166
1173
  Chip,
1167
1174
  {
1168
1175
  label: subitem.badge.label,
1169
- color: "hyper",
1176
+ color: subitem.badge.color,
1170
1177
  size: "small"
1171
1178
  }
1172
1179
  )
@@ -1208,7 +1215,14 @@ var SidebarItem = ({
1208
1215
  },
1209
1216
  item.label,
1210
1217
  " ",
1211
- item.badge && /* @__PURE__ */ React11.createElement(Chip, { label: item.badge.label, color: "hyper", size: "small" })
1218
+ item.badge && /* @__PURE__ */ React11.createElement(
1219
+ Chip,
1220
+ {
1221
+ label: item.badge.label,
1222
+ color: item.badge.color,
1223
+ size: "small"
1224
+ }
1225
+ )
1212
1226
  ))
1213
1227
  );
1214
1228
  }