import { html } from "lit"; import { msg } from "@lit/localize"; import type { BuilderComponent } from "../../types/BuilderComponent"; const DEFAULT_WIDTH = "300px"; const DEFAULT_HEIGHT = "1px"; export const DividerComponent: BuilderComponent = { type: "divider", label: () => msg("Divider"), group: "dividers", defaultData: { width: DEFAULT_WIDTH, height: DEFAULT_HEIGHT, }, render(data) { const width = data?.width || DEFAULT_WIDTH; const height = data?.height || DEFAULT_HEIGHT; return html`