nexaas-ui-components 1.0.67 → 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 CHANGED
@@ -6642,23 +6642,21 @@ var StatusBall = ({
6642
6642
  variant = "info",
6643
6643
  labelPosition = "right"
6644
6644
  }) => {
6645
- const ball = /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative shrink-0 h-3 w-3", children: [
6646
- /* @__PURE__ */ jsxRuntime.jsx(
6647
- "div",
6648
- {
6649
- className: clsx9__default.default(variants5[variant].big, "h-3 w-3 rounded-full")
6650
- }
6651
- ),
6652
- /* @__PURE__ */ jsxRuntime.jsx(
6653
- "div",
6654
- {
6655
- className: clsx9__default.default(
6656
- variants5[variant].small,
6657
- "h-[8px] w-[8px] rounded-full absolute z-30 top-[2px] left-[2px]"
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 })