Skip to content

Topol Divider block

ts
interface TopolDividerBlock extends TopolBlock {
  tagName: "mj-divider";
  attributes: {
    "border-color": string;
    "border-style": string;
    "border-width": string;
    "padding-top": string;
    "padding-right": string;
    containerWidth: number;
    padding: string;
    "container-background-color"?: string;
    "css-class"?: "hide_on_mobile" | "hide_on_desktop";
    "padding-bottom"?: "20px"; //questionable TBD
    "padding-left"?: "25px"; //questionable TBD
  };
}