UNPKG

@faire/mjml-react

Version:

React component library to generate the HTML emails on the fly

25 lines (24 loc) 815 B
import React from "react"; export interface IMjmlAccordionTextProps { backgroundColor?: React.CSSProperties["backgroundColor"]; fontSize?: string | number; fontFamily?: string; fontWeight?: string; letterSpacing?: string | number; lineHeight?: string | number; color?: React.CSSProperties["color"]; paddingBottom?: string | number; paddingLeft?: string | number; paddingRight?: string | number; paddingTop?: string | number; /** MJML default value: 16px */ padding?: string | number; className?: string; cssClass?: string; mjmlClass?: string; children?: React.ReactNode; dangerouslySetInnerHTML?: { __html: string; }; } export declare function MjmlAccordionText({ children, ...props }: IMjmlAccordionTextProps): React.JSX.Element;