Skip to content

Topol GIF block

The GIF block renders an mj-gif, an animated image sourced from src.

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";
  };
}