UNPKG

radh-ui

Version:

Stencil Component Starter

16 lines (15 loc) 442 B
import { Component, h } from "@stencil/core"; import { version } from './version'; export class RadhVersion { render() { return h("div", null, version); } static get is() { return "radh-version"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["radh-version.css"] }; } static get styleUrls() { return { "$": ["radh-version.css"] }; } }