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

9 lines
203 B
TypeScript

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