@planetaexo/design-system 0.4.13 → 0.4.14
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 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3171,7 +3171,13 @@ function BookingConfirmation({
|
|
|
3171
3171
|
adventure.description && /* @__PURE__ */ jsxs("div", { style: { marginTop: "4px" }, children: [
|
|
3172
3172
|
/* @__PURE__ */ jsx("hr", { style: { border: "none", borderTop: `1px solid ${emailTokens.border}`, marginBottom: "10px" } }),
|
|
3173
3173
|
/* @__PURE__ */ jsx("p", { style: { fontSize: "10px", fontWeight: "700", color: emailTokens.mutedForeground, textTransform: "uppercase", letterSpacing: "0.1em", margin: "0 0 8px 0" }, children: l.itineraryLabel }),
|
|
3174
|
-
/* @__PURE__ */ jsx(
|
|
3174
|
+
/* @__PURE__ */ jsx(
|
|
3175
|
+
"div",
|
|
3176
|
+
{
|
|
3177
|
+
style: { fontSize: "14px", color: emailTokens.bodyText, lineHeight: "1.6", margin: 0 },
|
|
3178
|
+
dangerouslySetInnerHTML: { __html: adventure.description }
|
|
3179
|
+
}
|
|
3180
|
+
)
|
|
3175
3181
|
] }),
|
|
3176
3182
|
adventure.included && adventure.included.length > 0 && /* @__PURE__ */ jsxs("div", { style: { marginTop: "10px" }, children: [
|
|
3177
3183
|
/* @__PURE__ */ jsx("h4", { style: { fontSize: "14px", fontWeight: "700", color: emailTokens.foreground, margin: "0 0 8px 0" }, children: l.includedLabel }),
|