UNPKG

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