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) 722 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 BadgeList { render() { return (h("div", { key: 'd430080404acee08b104adf1af3ed61beac50721', class: "utrecht-badge-list" }, h("slot", { key: 'c98b8da783a3b4206f6bbd598e6110de544309f4' }))); } static get is() { return "utrecht-badge-list"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["badge-list.scss"] }; } static get styleUrls() { return { "$": ["badge-list.css"] }; } } //# sourceMappingURL=badge-list.js.map