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) 701 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 PageHeader { render() { return (h("header", { key: '317ecebda809474355097de086ce7994b5340c48' }, h("slot", { key: 'd10c1a8283c47878924414ff390b6dbfb75ef381' }))); } static get is() { return "utrecht-page-header"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["page-header.scss"] }; } static get styleUrls() { return { "$": ["page-header.css"] }; } } //# sourceMappingURL=page-header.js.map