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) 705 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 Surface { render() { return (h("div", { key: '37be3f72490237dcfe0152cf2fb86b7494549dfa', class: "utrecht-surface" }, h("slot", { key: '3beb9256ebf2727214544c890bbf36a0a70f2df5' }))); } static get is() { return "utrecht-surface"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["surface.scss"] }; } static get styleUrls() { return { "$": ["surface.css"] }; } } //# sourceMappingURL=surface.js.map