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) 716 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 DataListValue { render() { return (h("dd", { key: '5755547f0e607afed2b044c377086c6e96d68f53' }, h("slot", { key: 'e22f9d6ace1b30e1fdb8f2d137b9358fc878ee41' }))); } static get is() { return "utrecht-data-list-value"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["data-list-value.scss"] }; } static get styleUrls() { return { "$": ["data-list-value.css"] }; } } //# sourceMappingURL=data-list-value.js.map