# \<ix-select>

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

## Installation

```bash
npm i ix-select
```

## Usage

```html
<script type="module">
  import 'ix-select/ix-select.js';
  import 'ix-select/ix-select-option.js';
</script>

<ix-select>
  <ix-select-option>
    <div value="1">Option label</div>
  </ix-select-option>
</ix-select>
```

```JS
import { IxSelect, IxSelectOption } from 'ix-select'

<IxSelect>
  <IxSelectOption>
    <div value="1">Option label</div>
  </IxSelectOption>
</IxSelect>
```

## Demo and Documentation

Full documentation and demo are available at [DLR Component Gallery](https://inxn-p1-uicomponentgallery.azurewebsites.net/?path=/story/inxn-ix-select--default).
