import { makeElement } from "../htmlUtils"; export function MarginInline(children: Element | Element[]): Element { return makeElement({ tag: "div", class: "uk-margin", children: makeElement({ tag: "div", class: "uk-inline", children: children, }), }); }