nexaas-ui-components 1.0.68 → 1.0.69
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 +15 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +15 -17
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6642,23 +6642,21 @@ var StatusBall = ({
|
|
|
6642
6642
|
variant = "info",
|
|
6643
6643
|
labelPosition = "right"
|
|
6644
6644
|
}) => {
|
|
6645
|
-
const ball = /* @__PURE__ */ jsxRuntime.
|
|
6646
|
-
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
|
|
6652
|
-
|
|
6653
|
-
|
|
6654
|
-
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
|
|
6658
|
-
|
|
6659
|
-
|
|
6660
|
-
)
|
|
6661
|
-
] });
|
|
6645
|
+
const ball = /* @__PURE__ */ jsxRuntime.jsx(
|
|
6646
|
+
"div",
|
|
6647
|
+
{
|
|
6648
|
+
className: clsx9__default.default(
|
|
6649
|
+
variants5[variant].big,
|
|
6650
|
+
"shrink-0 h-3 w-3 rounded-full flex items-center justify-center"
|
|
6651
|
+
),
|
|
6652
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
6653
|
+
"div",
|
|
6654
|
+
{
|
|
6655
|
+
className: clsx9__default.default(variants5[variant].small, "h-[8px] w-[8px] rounded-full")
|
|
6656
|
+
}
|
|
6657
|
+
)
|
|
6658
|
+
}
|
|
6659
|
+
);
|
|
6662
6660
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center justify-center gap-2", children: labelPosition === "right" ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
6663
6661
|
ball,
|
|
6664
6662
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-p-md text-paragraph font-normal", children: label })
|