Input control for a collection of tags
Input control for a collection of tags

```
npm install --save @logo-elements/tag-input
`html`
`js
import {PolymerElement, html} from '@polymer/polymer';
import '@logo-elements/tag-input/logo-elements-tag-input';
class SampleElement extends PolymerElement {
static get template() {
return html
;``
}
}
customElements.define('sample-element', SampleElement);