@planetaexo/design-system 0.5.4 → 0.5.5
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 +7 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -5164,16 +5164,13 @@ function RegistrationSuccessCard({
|
|
|
5164
5164
|
answers[f.id]
|
|
5165
5165
|
) })
|
|
5166
5166
|
] }, f.id)) }) }),
|
|
5167
|
-
terms && /* @__PURE__ */ jsxRuntime.
|
|
5168
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
5169
|
-
|
|
5170
|
-
|
|
5171
|
-
|
|
5172
|
-
|
|
5173
|
-
|
|
5174
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className: terms.accepted ? "text-primary font-medium" : "text-destructive font-medium", children: terms.accepted ? "Accepted" : "Not accepted" })
|
|
5175
|
-
] })
|
|
5176
|
-
] })
|
|
5167
|
+
terms && /* @__PURE__ */ jsxRuntime.jsx(FormSection2, { title: "Terms & Conditions", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2 text-sm font-ui", children: [
|
|
5168
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: cn(
|
|
5169
|
+
"inline-flex h-5 w-5 items-center justify-center rounded-full text-white text-xs font-bold",
|
|
5170
|
+
terms.accepted ? "bg-primary" : "bg-destructive"
|
|
5171
|
+
), children: terms.accepted ? "\u2713" : "\u2717" }),
|
|
5172
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: terms.accepted ? "text-primary font-medium" : "text-destructive font-medium", children: terms.accepted ? "Accepted" : "Not accepted" })
|
|
5173
|
+
] }) })
|
|
5177
5174
|
] });
|
|
5178
5175
|
}
|
|
5179
5176
|
var OTPCodeInput = ({
|