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) 711 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 HeadingGroup { render() { return (h("hgroup", { key: '4e8b6db926485544976a6a8cc2ddf7de20946d1d' }, h("slot", { key: '94272c82ab0a0fba056c22fb396fedf897f0a0c9' }))); } static get is() { return "utrecht-heading-group"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["heading-group.scss"] }; } static get styleUrls() { return { "$": ["heading-group.css"] }; } } //# sourceMappingURL=heading-group.js.map