@faire/mjml-react
Version:
React component library to generate the HTML emails on the fly
23 lines (22 loc) • 646 B
TypeScript
import React from "react";
export interface IMjmlCarouselImageProps {
alt?: string;
href?: string;
rel?: string;
/** MJML default value: _blank */
target?: string;
title?: string;
src?: string;
thumbnailsSrc?: string;
borderRadius?: React.CSSProperties["borderRadius"];
tbBorder?: string;
tbBorderRadius?: string | number;
className?: string;
cssClass?: string;
mjmlClass?: string;
children?: React.ReactNode;
dangerouslySetInnerHTML?: {
__html: string;
};
}
export declare function MjmlCarouselImage({ children, ...props }: IMjmlCarouselImageProps): React.JSX.Element;