@agility/plenum-ui 1.3.16 → 1.3.17
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/lib/components/Button/Button.d.ts +1 -1
- package/lib/index.esm.js +2 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +2 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.esm.js
CHANGED
|
@@ -7065,7 +7065,8 @@ var Button = function (_a, ref) {
|
|
|
7065
7065
|
: function () {
|
|
7066
7066
|
} },
|
|
7067
7067
|
icon ? (isLoading ? (React__default.createElement(Loader, { classes: "h-5 w-5 border-2" })) : (React__default.createElement(DynamicIcons, { icon: icon, className: iconStyles, outline: false }))) : (isLoading && React__default.createElement(Loader, { classes: "h-5 w-5 border-2" })),
|
|
7068
|
-
|
|
7068
|
+
label &&
|
|
7069
|
+
React__default.createElement("span", null, label)));
|
|
7069
7070
|
};
|
|
7070
7071
|
var _Button = forwardRef(Button);
|
|
7071
7072
|
|