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: 'b70c485e2a9494fd543390b2756c23797da0aee9', class: "utrecht-surface" }, h("slot", { key: '079b3943ef0c514bc34dfd1fc70b304bb584cfea' }))); } 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