@apexcura/ui-components 0.0.14-Beta34 → 0.0.14-Beta36
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 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -383,6 +383,7 @@ var ButtonElement = (props) => {
|
|
|
383
383
|
fetch(props.icon).then((response) => response.text()).then((data) => setSvgContent(data)).catch((error) => console.error("Error fetching SVG:", error));
|
|
384
384
|
}
|
|
385
385
|
}, [props.icon]);
|
|
386
|
+
console.log(svgContent);
|
|
386
387
|
return /* @__PURE__ */ import_react11.default.createElement(
|
|
387
388
|
"button",
|
|
388
389
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -324,6 +324,7 @@ var ButtonElement = (props) => {
|
|
|
324
324
|
fetch(props.icon).then((response) => response.text()).then((data) => setSvgContent(data)).catch((error) => console.error("Error fetching SVG:", error));
|
|
325
325
|
}
|
|
326
326
|
}, [props.icon]);
|
|
327
|
+
console.log(svgContent);
|
|
327
328
|
return /* @__PURE__ */ React11.createElement(
|
|
328
329
|
"button",
|
|
329
330
|
{
|