UNPKG

ednl-liftstatus-web-components

Version:
20 lines (19 loc) 527 B
import { Host, h } from "@stencil/core"; export class LsStatusHistory { render() { return (h(Host, null, h("fieldset", null, h("legend", null, "ls-status-history")), h("slot", null))); } static get is() { return "ls-status-history"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["ls-status-history.css"] }; } static get styleUrls() { return { "$": ["ls-status-history.css"] }; } } //# sourceMappingURL=ls-status-history.js.map