1
0
Fork 0
VaultUI/src/elements/Margin.js

10 lines
206 B
JavaScript
Raw Normal View History

2021-04-15 13:01:58 +01:00
import { makeElement } from "../htmlUtils.js";
2021-05-07 12:07:51 +01:00
export function Margin(children, options = {}) {
2021-04-15 13:01:58 +01:00
return makeElement({
tag: "div",
class: "uk-margin",
2021-05-07 12:07:51 +01:00
children: children,
...options
2021-04-15 13:01:58 +01:00
});
}