Multiple Select
Installation
Install the component via the CLI in one command.
npx shadcn@latest add @intentui/multiple-select
Composed components
When you install this component via the CLI, it automatically loads all composed components, so you don’t need to add them individually.
Manual installation
Use this approach if you prefer to install and wire up the component yourself instead of using the CLI.
npm install react-aria-components react-aria @heroicons/react
Anatomy
import { MultipleSelect, MultipleSelectItem, MultipleSelectLabel, MultipleSelectSection } from "@/components/ui/multiple-select"<MultipleSelect
className="min-w-2xs max-w-min"
placeholder="Select fruits"
aria-label="Fruits"
>
<MultipleSelectContent items={fruits}>
{(item) => {
return (
<MultipleSelectItem textValue={item.name}>
{item.name}
</MultipleSelectItem>
)
}}
</MultipleSelectContent>
</MultipleSelect>Examples
Controlled
This component lets you select tags dynamically, updating the list with callbacks on add and remove. It displays selected tags with Tag components and logs each action.
Invalid
When the component is invalid, it displays an error message.
Disabled
When the component is disabled, it prevents the user from adding or removing tags.
Component API
MultipleSelect
The MultipleSelect component lets users select multiple options.
| Prop | Type | Default |
|---|---|---|
className | string | - |
name | string | - |
onSearchChange | (value: string) => void | - |
placeholder | string | No selected items |
searchPlaceholder | string | - |
searchValue | string | - |
MultipleSelectContent
The MultipleSelectContent component renders multiple select options.
| Prop | Type | Default |
|---|---|---|
items | Iterable<T> | - |
MultipleSelectItem
The MultipleSelectItem component represents one multiple select option.
| Prop | Type | Default |
|---|---|---|
className | string | - |
See the React Aria for the full API reference.
