-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathMjmlSection.tsx
49 lines (46 loc) · 1.39 KB
/
MjmlSection.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
* This file is generated. Don't edit it directly.
* Modify `scripts/generate-mjml-react.ts` to make changes to these files
*/
import React from "react";
import { convertPropsToMjmlAttributes } from "../utils";
export interface IMjmlSectionProps {
backgroundColor?: React.CSSProperties["backgroundColor"];
backgroundUrl?: string;
backgroundRepeat?: "repeat" | "no-repeat";
backgroundSize?: React.CSSProperties["backgroundSize"];
backgroundPosition?: React.CSSProperties["backgroundPosition"];
backgroundPositionX?: string;
backgroundPositionY?: string;
border?: React.CSSProperties["border"];
borderBottom?: string;
borderLeft?: string;
borderRadius?: React.CSSProperties["borderRadius"];
borderRight?: string;
borderTop?: string;
/** MJML default value: ltr */
direction?: "ltr" | "rtl";
fullWidth?: boolean;
/** MJML default value: 20px 0 */
padding?: string | number;
paddingTop?: string | number;
paddingBottom?: string | number;
paddingLeft?: string | number;
paddingRight?: string | number;
textAlign?: "left" | "center" | "right";
textPadding?: string | number;
className?: string;
cssClass?: string;
mjmlClass?: string;
children?: React.ReactNode;
}
export function MjmlSection({
children,
...props
}: IMjmlSectionProps): JSX.Element {
return React.createElement(
"mj-section",
convertPropsToMjmlAttributes(props),
children
);
}