@faire/mjml-react
Version:
React component library to generate the HTML emails on the fly
22 lines (21 loc) • 722 B
TypeScript
import React from "react";
export interface IMjmlAccordionTitleProps {
backgroundColor?: React.CSSProperties["backgroundColor"];
color?: React.CSSProperties["color"];
fontSize?: string | number;
fontFamily?: string;
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 MjmlAccordionTitle({ children, ...props }: IMjmlAccordionTitleProps): React.JSX.Element;