@faire/mjml-react
Version:
React component library to generate the HTML emails on the fly
12 lines (11 loc) • 387 B
TypeScript
import React from "react";
export interface IMjmlBodyProps {
/** MJML default value: 600px */
width?: string | number;
backgroundColor?: React.CSSProperties["backgroundColor"];
className?: string;
cssClass?: string;
mjmlClass?: string;
children?: React.ReactNode;
}
export declare function MjmlBody({ children, ...props }: IMjmlBodyProps): React.JSX.Element;