radh-ui
Version:
Stencil Component Starter
17 lines (16 loc) • 519 B
JavaScript
import { Component, h } from '@stencil/core';
export class RadhLayoutCenter {
render() {
return (h("div", { class: "flex-container" },
h("div", { class: "row" },
h("div", { class: "flex-item" },
h("slot", null)))));
}
static get is() { return "radh-layout-center"; }
static get originalStyleUrls() { return {
"$": ["radh-layout-center.css"]
}; }
static get styleUrls() { return {
"$": ["radh-layout-center.css"]
}; }
}