@apexcura/ui-components 0.0.14-Beta192 → 0.0.14-Beta193
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
|
@@ -462,7 +462,7 @@ var ButtonElement = (props) => {
|
|
|
462
462
|
src: props.icon,
|
|
463
463
|
alt: props.label
|
|
464
464
|
}
|
|
465
|
-
) : svgContent && /* @__PURE__ */ import_react11.default.createElement("span", { dangerouslySetInnerHTML: { __html: svgContent } }), props.label)
|
|
465
|
+
) : svgContent && /* @__PURE__ */ import_react11.default.createElement("span", { className: props.iconsClassName, dangerouslySetInnerHTML: { __html: svgContent } }), props.label)
|
|
466
466
|
);
|
|
467
467
|
};
|
|
468
468
|
|
package/dist/index.mjs
CHANGED
|
@@ -396,7 +396,7 @@ var ButtonElement = (props) => {
|
|
|
396
396
|
src: props.icon,
|
|
397
397
|
alt: props.label
|
|
398
398
|
}
|
|
399
|
-
) : svgContent && /* @__PURE__ */ React11.createElement("span", { dangerouslySetInnerHTML: { __html: svgContent } }), props.label)
|
|
399
|
+
) : svgContent && /* @__PURE__ */ React11.createElement("span", { className: props.iconsClassName, dangerouslySetInnerHTML: { __html: svgContent } }), props.label)
|
|
400
400
|
);
|
|
401
401
|
};
|
|
402
402
|
|