UNPKG

@utrecht/web-component-library-stencil

Version:

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

27 lines (26 loc) 870 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 TopTaskNav { render() { // TODO: Add accessible name for navigation landmark, // using `aria-labelledby` and a heading. return (h("nav", { key: '2d428955c48b93b6b482c4d97e833e35c350d15c', class: "utrecht-toptask-nav utrecht-toptask-nav--grid" }, h("slot", { key: 'e24944cd1ac1649af580b9af0bb4b69350a3b5ec' }))); } static get is() { return "utrecht-top-task-nav"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["top-task-nav.scss"] }; } static get styleUrls() { return { "$": ["top-task-nav.css"] }; } } //# sourceMappingURL=top-task-nav.js.map