@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) • 638 B
JavaScript
import { h } from "@stencil/core";
/**
* @license EUPL-1.2
* Copyright (c) 2020-2024 Frameless B.V.
* Copyright (c) 2021-2024 Gemeente Utrecht
*/
export class PageContent {
render() {
return h("slot", { key: 'c6969323e2d560698050b49e9daefca56fe17686' });
}
static get is() { return "utrecht-page-content"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["page-content.scss"]
};
}
static get styleUrls() {
return {
"$": ["page-content.css"]
};
}
}
//# sourceMappingURL=page-content.js.map