@apexcura/ui-components 0.0.16-Beta43 → 0.0.16-Beta44
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.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -787,7 +787,7 @@ var Sidebar = (props) => {
|
|
|
787
787
|
function getItem(label, key, icon, children, item) {
|
|
788
788
|
return {
|
|
789
789
|
key,
|
|
790
|
-
icon: icon ? /* @__PURE__ */ import_react16.default.createElement("span", { className: props.iconsClassName
|
|
790
|
+
icon: icon ? /* @__PURE__ */ import_react16.default.createElement("span", { className: props.iconsClassName }, icon) : null,
|
|
791
791
|
children,
|
|
792
792
|
label,
|
|
793
793
|
onClick: () => handleChange(item)
|
package/dist/index.mjs
CHANGED
|
@@ -716,7 +716,7 @@ var Sidebar = (props) => {
|
|
|
716
716
|
function getItem(label, key, icon, children, item) {
|
|
717
717
|
return {
|
|
718
718
|
key,
|
|
719
|
-
icon: icon ? /* @__PURE__ */ React15.createElement("span", { className: props.iconsClassName
|
|
719
|
+
icon: icon ? /* @__PURE__ */ React15.createElement("span", { className: props.iconsClassName }, icon) : null,
|
|
720
720
|
children,
|
|
721
721
|
label,
|
|
722
722
|
onClick: () => handleChange(item)
|