2021-05-16 18:17:12 +01:00
|
|
|
import { makeElement } from "z-makeelement";
|
2021-04-15 13:01:58 +01:00
|
|
|
|
2021-05-08 03:33:22 +01:00
|
|
|
export function Margin(children: Element | Element[]): Element {
|
2021-04-15 13:01:58 +01:00
|
|
|
return makeElement({
|
|
|
|
tag: "div",
|
|
|
|
class: "uk-margin",
|
2021-05-12 16:01:04 +01:00
|
|
|
children: children,
|
2021-04-15 13:01:58 +01:00
|
|
|
});
|
2021-05-12 16:01:04 +01:00
|
|
|
}
|