UNPKG

bruno-ui

Version:
15 lines (14 loc) 377 B
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"] }; } }