UNPKG

@utrecht/web-component-library-stencil

Version:

Stencil component library bundle for the Municipality of Utrecht based on the NL Design System architecture

26 lines (25 loc) 764 B
/** * @license EUPL-1.2 * Copyright (c) 2020-2024 Frameless B.V. * Copyright (c) 2021-2024 Gemeente Utrecht * Copyright (c) 2021 Rijksoverheid */ import { h } from "@stencil/core"; export class LogoButton { render() { return (h("div", { key: '22a06e9cbc9e59321a3b9186b662e9b81ace6462', class: "utrecht-logo-button" }, h("slot", { key: '95431bae06b35d5b7077365d5721e94020cdcffa' }))); } static get is() { return "utrecht-logo-button"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["logo-button.scss"] }; } static get styleUrls() { return { "$": ["logo-button.css"] }; } } //# sourceMappingURL=logo-button.js.map