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) 696 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 PreHeading { render() { return (h("p", { key: '632a6c26d74e52ac758c88d3426378e0e8e25637' }, h("slot", { key: '9bb53f33c0e4f6b2116be9fe735d23af12379f92' }))); } static get is() { return "utrecht-pre-heading"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["pre-heading.scss"] }; } static get styleUrls() { return { "$": ["pre-heading.css"] }; } } //# sourceMappingURL=pre-heading.js.map