2021-05-07 22:23:52 +01:00
|
|
|
import { makeElement } from "../htmlUtils";
|
2021-04-15 13:01:58 +01:00
|
|
|
|
2021-05-08 00:38:02 +01:00
|
|
|
export function Margin(children: null | Element | (Element | null[])): Element {
|
2021-04-15 13:01:58 +01:00
|
|
|
return makeElement({
|
|
|
|
tag: "div",
|
|
|
|
class: "uk-margin",
|
2021-05-08 00:38:02 +01:00
|
|
|
children: children
|
2021-04-15 13:01:58 +01:00
|
|
|
});
|
|
|
|
}
|