@npm_leadtech/legal-contracts-ui 0.115.7 → 0.115.8
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/components/Paragraph.js +10 -7
- package/package.json +1 -1
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
const
|
|
4
|
-
default: "",
|
|
5
|
-
legal: "text-neutral-800 last:mb-0 tracking-tight",
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import l from "clsx";
|
|
3
|
+
const m = ({ variant: t = "default", children: a }) => /* @__PURE__ */ e("p", { className: l({
|
|
4
|
+
default: "mb-4",
|
|
5
|
+
legal: "mb-4 text-neutral-800 last:mb-0 tracking-tight",
|
|
6
|
+
tooltip: "mb-4",
|
|
7
|
+
"about-us": "mb-4",
|
|
8
|
+
pricing: "mb-4",
|
|
6
9
|
unsubscribe: "mb-0 w-full rounded-lg bg-neutral-25 px-6 pb-6 text-left text-base leading-6 text-neutral-800 md:text-lg lg:px-ds-11xl"
|
|
7
|
-
}[t]), children:
|
|
10
|
+
}[t]), children: a });
|
|
8
11
|
export {
|
|
9
|
-
|
|
12
|
+
m as Paragraph
|
|
10
13
|
};
|