UNPKG

@faire/mjml-react

Version:

React component library to generate the HTML emails on the fly

14 lines (13 loc) 468 B
import React from "react"; export interface IMjmlGroupProps { backgroundColor?: React.CSSProperties["backgroundColor"]; /** MJML default value: ltr */ direction?: "ltr" | "rtl"; verticalAlign?: "top" | "bottom" | "middle"; width?: string | number; className?: string; cssClass?: string; mjmlClass?: string; children?: React.ReactNode; } export declare function MjmlGroup({ children, ...props }: IMjmlGroupProps): React.JSX.Element;