@sikka/hawa 0.42.9-next → 0.42.10-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.
@@ -1123,7 +1123,8 @@ var SidebarItem = ({
1123
1123
  isOpen ? "hawa-opacity-100" : "hawa-opacity-0"
1124
1124
  )
1125
1125
  },
1126
- item.label
1126
+ item.label,
1127
+ item.badge && /* @__PURE__ */ React11.createElement(Chip, { label: item.badge.label, color: "hyper", size: "small" })
1127
1128
  )
1128
1129
  )
1129
1130
  ),
@@ -1160,7 +1161,15 @@ var SidebarItem = ({
1160
1161
  )
1161
1162
  },
1162
1163
  subitem.icon && subitem.icon,
1163
- subitem.label
1164
+ subitem.label,
1165
+ subitem.badge && /* @__PURE__ */ React11.createElement(
1166
+ Chip,
1167
+ {
1168
+ label: subitem.badge.label,
1169
+ color: "hyper",
1170
+ size: "small"
1171
+ }
1172
+ )
1164
1173
  ))
1165
1174
  ))
1166
1175
  );