UNPKG

@faire/mjml-react

Version:

React component library to generate the HTML emails on the fly

10 lines (9 loc) 270 B
import React from "react"; export interface IMjmlStyleProps { inline?: boolean; children?: React.ReactNode; dangerouslySetInnerHTML?: { __html: string; }; } export declare function MjmlStyle({ children, ...props }: IMjmlStyleProps): JSX.Element;