Skip to content

Topol Image Block

ts
interface TopolImageBlock extends TopolBlock {
  tagName: "mj-image";
  attributes: {
    src: string;
    padding: string;
    "fluid-on-mobile": "true" | "false"; //not boolean because of MJML
    alt: string;
    href: string;
    containerWidth: number;
    title?: string;
    align?: string;
    width?: number;
    "css-class"?: "hide_on_mobile" | "hide_on_desktop";
  };
}