@blueprintjs/select
Version:
Components related to selecting items from a list
29 lines (18 loc) • 1.03 kB
Markdown
@
**MultiSelect** renders a UI to choose multiple items from a list. It renders a
[**TagInput**](
Just like with [**Select**](
@
```tsx
import { MultiSelect } from "@blueprintjs/select";
```
The selection state of a **MultiSelect** is controlled with the `selectedItems` prop.
You may react to user interactions with the `onItemSelect` and `onRemove` callback props.
@reactExample MultiSelectExample
<div class="@ns-callout @ns-intent-primary @ns-icon-info-sign @ns-callout-has-body-content">
<h5 class="@ns-heading">Generic components and custom filtering</h5>
For more information on controlled usage, generic components, creating new items, and custom filtering,
please visit the documentation for [**Select**](
</div>
@
@interface MultiSelectProps