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