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: '3f0a3f46582dab43ef7f07ccfc2293d59256d1ed', class: "utrecht-article" }, h("slot", { key: '7f4f738fb6f54d983782e5e4ff9321f9e8830dcc' }))); } 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