@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
JavaScript
/**
* @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: '391c9049974b3d7940ba47714901ae7d2a316f31', class: "utrecht-toptask-nav utrecht-toptask-nav--grid" }, h("slot", { key: 'eb47564782acd7bd3080a34bbd0fb5b7e5129e88' })));
}
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