@blueprintjs/select
Version:
Components related to selecting items from a list
35 lines (24 loc) • 1.04 kB
text/mdx
---
title: Select
reference: select
---
# Select
The [**@blueprintjs/select** package](https://www.npmjs.com/package/@blueprintjs/select)
provides React components for to selecting items from a list:
- [Select](#select/select-component) for selecting items in a list.
- [Suggest](#select/suggest) for selecting items in a list, from a text input.
- [MultiSelect](#select/multi-select) for selecting multiple items in a list.
- [Omnibar](#select/omnibar), a macOS spotlight-style typeahead component.
- [QueryList](#select/query-list), a higher-order component that provides interactions between a query string and a list of items.
Make sure to review the [getting started docs for installation info](#blueprint/getting-started).
```sh copy
npm install --save @blueprintjs/select
```
Import the package stylesheet in Sass:
```scss
@import "@blueprintjs/select/lib/css/blueprint-select.css";
```
...or in plain HTML:
```html
<link href="path/to/node_modules/@blueprintjs/select/lib/css/blueprint-select.css" rel="stylesheet" />
```