bruno-ui
Version:
Bruno UI Kit
15 lines (14 loc) • 377 B
JavaScript
import { h } from "@stencil/core";
export class RowComponent {
render() {
return (h("div", null,
h("slot", null)));
}
static get is() { return "brn-row"; }
static get originalStyleUrls() { return {
"$": ["row.component.scss"]
}; }
static get styleUrls() { return {
"$": ["row.component.css"]
}; }
}