1
0
Fork 0
VaultUI/src/elements/MarginInline.ts
2021-05-08 03:33:22 +01:00

13 lines
292 B
TypeScript

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,
}),
});
}