@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) • 678 B
JavaScript
import { h } from "@stencil/core";
/**
* @license EUPL-1.2
* Copyright (c) 2020-2024 Frameless B.V.
* Copyright (c) 2021-2024 Gemeente Utrecht
*/
export class NavBar {
render() {
return (h("div", { key: '1ff3dfeefd34721e32d9d67174d7ab62b64f1885' }, h("slot", { key: '7d0c33cfe6dc0efd182b4c442a592460e378cbe8' })));
}
static get is() { return "utrecht-nav-bar"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["nav-bar.scss"]
};
}
static get styleUrls() {
return {
"$": ["nav-bar.css"]
};
}
}
//# sourceMappingURL=nav-bar.js.map