@lctafrica/ui 1.1.3 → 1.1.4
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 +6 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15411,24 +15411,25 @@ const YI = St(
|
|
|
15411
15411
|
}
|
|
15412
15412
|
);
|
|
15413
15413
|
function KI({
|
|
15414
|
-
privilege: e
|
|
15414
|
+
privilege: e,
|
|
15415
15415
|
containerClassName: t,
|
|
15416
15416
|
containerStyle: r
|
|
15417
15417
|
}) {
|
|
15418
|
+
const o = e ?? "NORMAL";
|
|
15418
15419
|
return /* @__PURE__ */ fe(
|
|
15419
15420
|
"div",
|
|
15420
15421
|
{
|
|
15421
15422
|
style: r,
|
|
15422
15423
|
className: T(
|
|
15423
15424
|
YI({
|
|
15424
|
-
privilege:
|
|
15425
|
+
privilege: o,
|
|
15425
15426
|
className: t
|
|
15426
15427
|
})
|
|
15427
15428
|
),
|
|
15428
15429
|
children: [
|
|
15429
|
-
|
|
15430
|
-
|
|
15431
|
-
|
|
15430
|
+
o === "VVIP" ? /* @__PURE__ */ v(Ew, { size: 16, strokeWidth: 2 }) : o === "VIP" ? /* @__PURE__ */ v(zw, { size: 16, strokeWidth: 2 }) : /* @__PURE__ */ v(Wf, { size: 16, strokeWidth: 2 }),
|
|
15431
|
+
o !== "NORMAL" && /* @__PURE__ */ v("p", { children: o }),
|
|
15432
|
+
o === "VVIP" && /* @__PURE__ */ v(Tw, { size: 16, strokeWidth: 2 })
|
|
15432
15433
|
]
|
|
15433
15434
|
}
|
|
15434
15435
|
);
|