ednl-liftstatus-web-components
Version:
The EDNL LiftStatus web components
20 lines (19 loc) • 492 B
JavaScript
import { Host, h } from '@stencil/core';
export class LsCounters {
render() {
return (h(Host, null, h("fieldset", null, h("legend", null, "ls-counters")), h("slot", null)));
}
static get is() { return "ls-counters"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["ls-counters.css"]
};
}
static get styleUrls() {
return {
"$": ["ls-counters.css"]
};
}
}
//# sourceMappingURL=ls-counters.js.map