UNPKG

@faire/mjml-react

Version:

React component library to generate the HTML emails on the fly

13 lines (12 loc) 404 B
import React from "react"; export interface IMjmlBodyProps { /** MJML default value: 600px */ width?: string | number; backgroundColor?: React.CSSProperties["backgroundColor"]; id?: string; className?: string; cssClass?: string; mjmlClass?: string; children?: React.ReactNode; } export declare function MjmlBody({ children, ...props }: IMjmlBodyProps): React.JSX.Element;