@faire/mjml-react
Version:
React component library to generate the HTML emails on the fly
13 lines (12 loc) • 342 B
TypeScript
import React from "react";
export interface IMjmlRawProps {
position?: "file-start";
className?: string;
cssClass?: string;
mjmlClass?: string;
children?: React.ReactNode;
dangerouslySetInnerHTML?: {
__html: string;
};
}
export declare function MjmlRaw({ children, ...props }: IMjmlRawProps): JSX.Element;