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