# TagsInput Documentation ## Installation ```bash jsrepo add ui/tags-input ``` ## Components ### TagsInput The root tags input component. Allows entry and validation of multiple tags. #### Props | Prop | Type | Default Value | Required | Bindable | Description | |------|------|--------------|----------|----------|-------------| | value | string[] | [] | false | true | The current list of tags. | | validate | (val: string, tags: string[]) => string | undefined | defaultValidate | false | false | A function to validate and transform a tag before it is added. Return the transformed tag or undefined to reject. |