@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: '83c8a6bf6d3647f087ec16a3024f808941041c38', role: "table" }, h("slot", { key: '9980467fdbf32e20f484e833c83a74721a8c89d7' })));
}
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