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