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) 633 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 PageLayout { render() { return h("slot", { key: '1cbb28b5b29af2e1b0ec3a9c9ce8faa343369e1a' }); } static get is() { return "utrecht-page-layout"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["page-layout.scss"] }; } static get styleUrls() { return { "$": ["page-layout.css"] }; } } //# sourceMappingURL=page-layout.js.map