10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { makeElement } from "z-makeelement";
|
|
|
|
export function Margin(children: Element | Element[]): Element {
|
|
return makeElement({
|
|
tag: "div",
|
|
class: "uk-margin",
|
|
children: children,
|
|
});
|
|
}
|