9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
|
import { makeElement } from "../htmlUtils.js";
|
||
|
|
||
|
export function Margin(children) {
|
||
|
return makeElement({
|
||
|
tag: "div",
|
||
|
class: "uk-margin",
|
||
|
children: children
|
||
|
});
|
||
|
}
|