UNPKG

@utrecht/web-component-library-stencil

Version:

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

50 lines (49 loc) 1.53 kB
/** * @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 DigidButton { constructor() { this.type = undefined; } render() { return (h("div", { key: 'f1212d9f2e58b416ad10adbf9be0f7f13c5ab691', class: "utrecht-digid-button" }, h("utrecht-digid-logo", { key: '422595d281253ee157ea2acd7e5ae014e1ffcf9d', class: "utrecht-digid-button__logo" }), h("slot", { key: '665ad8db0714b47d0565d21f586ad1e8d78d1d72' }))); } static get is() { return "utrecht-digid-button"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["digid-button.scss"] }; } static get styleUrls() { return { "$": ["digid-button.css"] }; } static get properties() { return { "type": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "" }, "attribute": "type", "reflect": false } }; } } //# sourceMappingURL=digid-button.js.map