9 lines
203 B
TypeScript
9 lines
203 B
TypeScript
import { makeElement } from "../htmlUtils";
|
|
|
|
export function Margin(children: Element | Element[]): Element {
|
|
return makeElement({
|
|
tag: "div",
|
|
class: "uk-margin",
|
|
children: children
|
|
});
|
|
} |