# \<ix-intraportal-nav>

This webcomponent follows the [open-wc](https://github.com/open-wc/open-wc) recommendation.

## Installation

```bash
npm i @digital-realty/ix-intraportal-nav
```

## Usage

```html
<script type="module">
  import '@digital-realty/ix-intraportal-nav/ix-intraportal-nav.js';
</script>

<ix-intraportal-nav
  .navItems=${[
    { label: 'Home', href: '/', selected: true },
    { label: 'About', href: '/about' },
    { label: 'Contact', href: '/contact' },
  ]}
></ix-intraportal-nav>


