@planetaexo/design-system 0.17.0 → 0.18.0

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
@@ -6066,6 +6066,7 @@ function RegistrationSuccessCard({
6066
6066
  actions,
6067
6067
  logo,
6068
6068
  logoAlt = "PlanetaEXO",
6069
+ showSuccessIcon,
6069
6070
  terms,
6070
6071
  termsLayout = "summary",
6071
6072
  termsLabels,
@@ -6119,7 +6120,7 @@ function RegistrationSuccessCard({
6119
6120
  className: "h-10 w-auto object-contain"
6120
6121
  }
6121
6122
  ),
6122
- logo === void 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "inline-flex h-14 w-14 items-center justify-center rounded-full bg-primary/10 text-primary", children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.CircleCheckIcon, { size: 28 }) }),
6123
+ (showSuccessIcon != null ? showSuccessIcon : logo === void 0) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "inline-flex h-14 w-14 items-center justify-center rounded-full bg-primary/10 text-primary", children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.CircleCheckIcon, { size: 28 }) }),
6123
6124
  /* @__PURE__ */ jsxRuntime.jsx("h2", { className: "text-2xl font-black uppercase tracking-wide text-foreground font-heading leading-tight", children: title }),
6124
6125
  message && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm text-muted-foreground font-ui", children: message })
6125
6126
  ] }),