# Pill Input
This component will render a text input field and add a pill to a list below when the
user hits enter or tab.  Pills can be removed by clicking the x to the right of the text.

## Usage
### To display a pill input
```hbs
{{pill-input inputType='tel' items=object.items }}
```

### To add custom instructions
```hbs
{{pill-input instructions='not the default instructions' items=object.items }}
```

### To add turn off instructions
```hbs
{{pill-input instructions=false items=object.items }}
```
