import XNode from "@web-atoms/core/dist/core/XNode"; import Cell from "./Cell"; import EmailFooter from "./EmailFooter"; import Row from "./Row"; import StyleHelper from "./StyleHelper"; import Table from "./Table"; import IEmailElementStyle from "../style/IEmailElementStyle"; import mergeStyle from "../style/mergeStyle"; export interface IEmailModelParameter extends IEmailElementStyle { maxWidth?: string; emailBox?: boolean; unsubscribeLink?: string; poweredBy?: string; poweredByLink?: string; refID?: string; bodyStyle?: IEmailElementStyle; } export default function Email( { maxWidth, emailBox, unsubscribeLink, poweredBy, poweredByLink, style, bodyStyle = { backgroundColor: "white" }, refID = "[$refid$]", ... a }: IEmailModelParameter, ... children: XNode[] ): XNode { style = mergeStyle({ width: "100%", margin: "0", padding: "10px", webkitTextSizeAdjust: "100%", // @ts-expect-error msTextSizeAdjust: "100%", fontFamily: "Arial", // @ts-expect-error width: "100%", backgroundColor: "#808080", textAlign: "center", } , style ); bodyStyle = mergeStyle({ maxWidth: maxWidth || "700px", marginLeft: "auto", marginRight: "auto", borderRadius: "10px", padding: "10px", textAlign: "left" }, bodyStyle); return