konsolpro-custom-ui 0.0.414 → 0.0.415
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/lib/index.js +3 -2
- package/package.json +1 -1
package/dist/lib/index.js
CHANGED
|
@@ -1732,10 +1732,11 @@ const Fe = v.forwardRef(
|
|
|
1732
1732
|
{
|
|
1733
1733
|
className: m(
|
|
1734
1734
|
"flex shrink-0 items-center gap-1.5",
|
|
1735
|
-
!M && "pr-2.5"
|
|
1735
|
+
!M && r === "md" && "pr-2.5",
|
|
1736
|
+
!M && r === "lg" && "pr-3"
|
|
1736
1737
|
),
|
|
1737
1738
|
children: [
|
|
1738
|
-
h && /* @__PURE__ */ n("div", { className: "font-graphik flex items-center text-[16px]", children: h }),
|
|
1739
|
+
h && /* @__PURE__ */ n("div", { className: m("font-graphik flex items-center text-[16px]", u && "text-secondary opacity-50"), children: h }),
|
|
1739
1740
|
x && /* @__PURE__ */ n(
|
|
1740
1741
|
"div",
|
|
1741
1742
|
{
|