15 lines
348 B
JavaScript
15 lines
348 B
JavaScript
import { makeElement } from "../htmlUtils";
|
|
|
|
export function MarginInline(children, marginOptions = {}, inlineOptions = {}) {
|
|
return makeElement({
|
|
tag: "div",
|
|
class: "uk-margin",
|
|
children: makeElement({
|
|
tag: "div",
|
|
class: "uk-inline",
|
|
children: children,
|
|
...inlineOptions,
|
|
}),
|
|
...marginOptions,
|
|
});
|
|
} |