Skip to content

Topol column

ts
type TopolColumn = {
  tagName: "mj-column";
  attributes: {
    width: string; // e.g. 100%
    "vertical-align": "top";
    "border-right"?: string;
    "border-top"?: string;
    "border-left"?: string;
    "border-bottom"?: string;
    "background-color"?: string;
    "border-radius"?: string;
    padding?: string;
  };

  children: TopolBlock[];
  uid: string;
};