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) 688 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 Code { render() { return (h("code", { key: '4553c6a4ef5cc0afbf7a6bc6fe56209e8d8f8afe', class: "utrecht-code" }, h("slot", { key: '7125ff0ab1d0377ed3c122c22f676cde609cd7a7' }))); } static get is() { return "utrecht-code"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["code.scss"] }; } static get styleUrls() { return { "$": ["code.css"] }; } } //# sourceMappingURL=code.js.map