Skip to content

Topol GIF block

ts
interface TopolGifBlock extends TopolBlock {
  tagName: "mj-gif";
  attributes: {
    src: string;
    padding: string;
    alt: string;
    href: string;
    containerWidth: number;
    align?: string;
    width?: number;
    widthPercent?: number;
    "css-class"?: "hide_on_mobile" | "hide_on_desktop";
  };
}