@npm_leadtech/legal-contracts-ui 0.82.0 → 0.82.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,15 +1,15 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { TwoColumnSection as
|
|
3
|
-
import { Button as
|
|
4
|
-
const b = ({ image:
|
|
5
|
-
|
|
1
|
+
import { jsx as m, jsxs as o } from "react/jsx-runtime";
|
|
2
|
+
import { TwoColumnSection as e } from "./TwoColumnSection.js";
|
|
3
|
+
import { Button as t } from "./Button.js";
|
|
4
|
+
const b = ({ image: s, children: i, cta: l, className: r, containerClassName: a }) => /* @__PURE__ */ m(
|
|
5
|
+
e,
|
|
6
6
|
{
|
|
7
|
-
className:
|
|
8
|
-
containerClassName:
|
|
9
|
-
firstColumn: /* @__PURE__ */
|
|
7
|
+
className: r ?? "",
|
|
8
|
+
containerClassName: a,
|
|
9
|
+
firstColumn: /* @__PURE__ */ m("div", { className: "mb-4 md:mr-6 md:mb-0 md:basis-42/100 lg:mr-10 lg:basis-39/100 xl:basis-36/100 [&_img]:w-full [&_img]:h-auto xl:[&_img]:h-full xl:[&_img]:object-cover [&_img]:rounded-2xl", children: s }),
|
|
10
10
|
secondColumn: /* @__PURE__ */ o("div", { className: "mt-4 basis-full md:mt-0 md:basis-56/100 lg:basis-59/100 xl:basis-60/100", children: [
|
|
11
|
-
|
|
12
|
-
/* @__PURE__ */
|
|
11
|
+
i,
|
|
12
|
+
/* @__PURE__ */ m(t, { size: "large", variant: "primary-darkgreen", className: "mt-8", ...l })
|
|
13
13
|
] })
|
|
14
14
|
}
|
|
15
15
|
);
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { clsx as
|
|
3
|
-
const
|
|
1
|
+
import { jsx as x, jsxs as c } from "react/jsx-runtime";
|
|
2
|
+
import { clsx as l } from "clsx";
|
|
3
|
+
const t = ({
|
|
4
4
|
firstColumn: e,
|
|
5
5
|
secondColumn: o,
|
|
6
6
|
className: r,
|
|
7
7
|
containerClassName: m
|
|
8
|
-
}) => /* @__PURE__ */
|
|
8
|
+
}) => /* @__PURE__ */ x("section", { className: r ?? "", children: /* @__PURE__ */ c(
|
|
9
9
|
"div",
|
|
10
10
|
{
|
|
11
|
-
className:
|
|
12
|
-
"container mx-auto flex max-w-300 flex-
|
|
11
|
+
className: l(
|
|
12
|
+
"container mx-auto flex max-w-300 flex-col justify-center px-4 py-10 md:flex-row md:flex-nowrap md:px-8",
|
|
13
13
|
m
|
|
14
14
|
),
|
|
15
15
|
children: [
|
|
@@ -19,5 +19,5 @@ const i = ({
|
|
|
19
19
|
}
|
|
20
20
|
) });
|
|
21
21
|
export {
|
|
22
|
-
|
|
22
|
+
t as TwoColumnSection
|
|
23
23
|
};
|