@utrecht/web-component-library-stencil
Version:
Stencil component library bundle for the Municipality of Utrecht based on the NL Design System architecture
20 lines (19 loc) • 574 B
JavaScript
import { h, Host } from "@stencil/core";
export class Table {
render() {
return (h(Host, { key: 'ef50808d5c636a1e78863ac5cc58d9e646fe39a3', role: "table" }, h("slot", { key: '8bf8fe04e68aec61fa2b7bd8c7eea9f582e43e39' })));
}
static get is() { return "utrecht-table"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["table.scss"]
};
}
static get styleUrls() {
return {
"$": ["table.css"]
};
}
}
//# sourceMappingURL=table.js.map