@npm_leadtech/legal-contracts-ui 0.147.1 → 0.147.2
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.
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
-
import
|
|
3
|
-
const
|
|
2
|
+
import r from "clsx";
|
|
3
|
+
const m = ({ children: e, variant: l = "default" }) => {
|
|
4
4
|
const t = {
|
|
5
|
-
default: "mt-5 mb-3 text-
|
|
5
|
+
default: "mt-5 mb-3 text-super-large text-neutral-800",
|
|
6
6
|
legal: "mt-5 -mx-ds-11xl mb-6 bg-white px-ds-11xl text-left text-neutral-800 text-3xl",
|
|
7
7
|
ratafia: "mt-4 mb-3 text-left text-xl font-bold text-white lg:text-2xl",
|
|
8
8
|
unsubscribe: "mt-0 mb-0 w-full bg-white pb-4 pt-8 text-left text-3xl leading-tight text-neutral-900 font-sans tracking-tight md:text-4xl md:leading-8"
|
|
9
9
|
}, x = t[l] ?? t.default;
|
|
10
|
-
return /* @__PURE__ */ a("h2", { className:
|
|
10
|
+
return /* @__PURE__ */ a("h2", { className: r("font-bold", x), children: e });
|
|
11
11
|
};
|
|
12
12
|
export {
|
|
13
|
-
|
|
13
|
+
m as Header2
|
|
14
14
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
const
|
|
2
|
+
const r = ({ children: t }) => /* @__PURE__ */ e("h3", { className: "text-large mt-5 mb-3 font-bold text-neutral-800", children: t });
|
|
3
3
|
export {
|
|
4
|
-
|
|
4
|
+
r as Header3
|
|
5
5
|
};
|