@utrecht/web-component-library-stencil
Version:
Stencil component library bundle for the Municipality of Utrecht based on the NL Design System architecture
25 lines (24 loc) • 599 B
JavaScript
/**
* @license EUPL-1.2
* Copyright (c) 2020-2024 Frameless B.V.
* Copyright (c) 2021-2024 Gemeente Utrecht
*/
import { h } from "@stencil/core";
export class Root {
render() {
return h("slot", { key: '3f1a5ebf592319256507a14284f91c166d95a9c1' });
}
static get is() { return "utrecht-root"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["root.scss"]
};
}
static get styleUrls() {
return {
"$": ["root.css"]
};
}
}
//# sourceMappingURL=root.js.map