nexaas-ui-components 1.0.36 → 1.0.37
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.cjs +7 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -229,7 +229,13 @@ var Button = ({
|
|
|
229
229
|
"div",
|
|
230
230
|
{
|
|
231
231
|
className: `flex items-center justify-center ${appliedSize.icon}`,
|
|
232
|
-
children: props.icon && !props.loading ? props.icon : props.loadingIcon && props.loading ? props.loadingIcon : /* @__PURE__ */ jsxRuntime.jsx(
|
|
232
|
+
children: props.icon && !props.loading ? props.icon : props.loadingIcon && props.loading ? props.loadingIcon : /* @__PURE__ */ jsxRuntime.jsx(
|
|
233
|
+
SpinnerIcon,
|
|
234
|
+
{
|
|
235
|
+
className: "animate-spin w-4 h-4",
|
|
236
|
+
fill: "currentColor"
|
|
237
|
+
}
|
|
238
|
+
)
|
|
233
239
|
}
|
|
234
240
|
),
|
|
235
241
|
props.children,
|