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