Skip to content

Topol Text Block

ts
interface TopolTextBlock extends TopolBlock {
  tagName: "mj-text";
  attributes: {
    align: "left" | "center" | "right";
    padding: string;
    "line-height": number;
    containerWidth: number;
    "css-class"?: "hide_on_mobile" | "hide_on_desktop";
  };
  content: string;
}