react-dropdown, react-dropdown-select, and react-select are all npm packages that provide customizable dropdown (select) components for React applications. These libraries help developers implement user-friendly selection interfaces with features like search, multi-select, custom styling, and accessibility support. While they share the same basic goal — replacing or enhancing the native HTML <select> element — they differ significantly in flexibility, feature set, and architectural approach.
When building forms or filters in React apps, you’ll often need more than the native <select> element. The three libraries — react-dropdown, react-dropdown-select, and react-select — all aim to solve this, but they take very different approaches. Let’s compare them across key engineering concerns.
react-dropdown is a minimal implementation with no external dependencies. It renders a simple styled dropdown using inline styles and basic event handling. It doesn’t use portals, so it can be clipped by overflow containers.
// react-dropdown
import Dropdown from 'react-dropdown';
import 'react-dropdown/style.css';
const options = ['apple', 'banana', 'cherry'];
<Dropdown options={options} onChange={handleChange} value="apple" placeholder="Select..." />
react-dropdown-select is also dependency-free but gives you complete control over rendering. It uses a render-prop pattern and doesn’t ship any default styles — you write all CSS yourself. It supports portals via the portal prop.
// react-dropdown-select
import Select from 'react-dropdown-select';
<Select
options={options}
onChange={handleChange}
values={[{ value: 'apple' }]}
contentRenderer={({ state }) => <div>{state.values[0]?.value || 'Select...'}</div>}
/>
react-select is a mature, self-contained component with its own styling system (emotion). It uses React Portals by default to avoid clipping, includes built-in accessibility attributes, and supports theming via props or styled-components.
// react-select
import Select from 'react-select';
const options = [{ value: 'apple', label: 'Apple' }, { value: 'banana', label: 'Banana' }];
<Select options={options} onChange={handleChange} defaultValue={options[0]} />
All three support searchable dropdowns, but with different levels of control.
react-dropdown does not support search out of the box. You’d need to build this yourself or choose another library.
react-dropdown-select enables search with the searchable prop and lets you customize the search logic via searchFn.
// react-dropdown-select with custom search
<Select
searchable
searchFn={(option, query) => option.value.toLowerCase().includes(query.toLowerCase())}
options={options}
/>
react-select includes robust search with fuzzy matching by default. You can override filtering logic using the filterOption prop.
// react-select with custom filter
<Select
options={options}
filterOption={(candidate, input) => candidate.label.toLowerCase().includes(input.toLowerCase())}
/>
react-dropdown uses a single CSS file. Customization requires overriding class names or using the className prop. No dynamic theming support.
// react-dropdown custom class
<Dropdown className="my-custom-dropdown" />
react-dropdown-select ships no styles. You style everything via CSS classes or inline styles passed through props like dropdownHandleRenderer or contentRenderer.
// react-dropdown-select fully custom
<Select
dropdownRenderer={({ props, state, methods }) => (
<div style={{ background: '#f0f0f0', border: '1px solid #ccc' }}>
{props.options.map(opt => <div key={opt.value}>{opt.label}</div>)}
</div>
)}
/>
react-select provides a powerful theming API. You can modify colors, spacing, and even pseudo-states programmatically.
// react-select custom theme
<Select
theme={theme => ({
...theme,
borderRadius: 8,
colors: {
...theme.colors,
primary: 'hotpink',
primary25: 'lightpink'
}
})}
/>
react-dropdown has basic keyboard support (arrow keys, Enter) but lacks proper ARIA attributes. Not recommended for applications requiring WCAG compliance.
react-dropdown-select leaves accessibility entirely up to the developer. Since you control rendering, you must manually add role, aria-*, and focus management.
react-select includes comprehensive accessibility: proper ARIA roles, live announcements, full keyboard navigation (including type-to-search), and screen reader support out of the box.
// react-select is accessible by default — no extra code needed
<Select options={options} />
| Feature | react-dropdown | react-dropdown-select | react-select |
|---|---|---|---|
| Multi-select | ❌ | ✅ | ✅ |
| Async loading | ❌ | ✅ (loadOptions) | ✅ (AsyncSelect) |
| Creatable options | ❌ | ✅ (creatable) | ✅ (CreatableSelect) |
| Grouped options | ❌ | ✅ | ✅ |
| Virtualized scrolling | ❌ | ❌ | ✅ (via react-window integration) |
| Clearable | ❌ | ✅ | ✅ |
Example: Multi-select in react-dropdown-select:
<Select
multi
values={selectedValues}
onChange={setSelectedValues}
options={options}
/>
Example: Async loading in react-select:
import AsyncSelect from 'react-select/async';
const loadOptions = (input) => fetch(`/api/search?q=${input}`).then(res => res.json());
<AsyncSelect loadOptions={loadOptions} />
As of 2024, react-dropdown shows signs of abandonment — its last meaningful update was years ago, and it lacks support for modern React features like concurrent mode. While it works for trivial cases, it’s risky for long-term projects.
Both react-dropdown-select and react-select are actively maintained. react-select has a larger team and more frequent releases, while react-dropdown-select follows a minimalist philosophy with slower but steady updates.
react-dropdown (but only if you accept the maintenance risk).react-dropdown-select.react-select.In most professional contexts — especially where accessibility, internationalization, or complex user workflows are involved — react-select is the safest and most scalable choice. Reserve the lighter alternatives for internal tools or prototypes where those concerns don’t apply.
Choose react-select if you need a production-ready, feature-rich dropdown component with strong accessibility support, extensive theming options, async data loading, and a large ecosystem of extensions. It's the best fit for enterprise applications where UX consistency, keyboard navigation, screen reader compatibility, and maintainability are priorities. The trade-off is a larger bundle size and more complex configuration for simple cases.
Choose react-dropdown-select if you want a zero-dependency, highly customizable dropdown that gives you full control over rendering and behavior without relying on external UI libraries. It's ideal for teams that prefer writing their own styles from scratch and need features like search, multi-select, and creatable options without the overhead of a larger ecosystem. Its API is straightforward but requires more manual setup for advanced interactions.
Choose react-dropdown if you need a minimal, lightweight dropdown for simple use cases with basic styling requirements. It's suitable for projects where bundle size is critical and advanced features like async loading, extensive customization, or complex accessibility aren't needed. However, note that it hasn't seen active maintenance recently and lacks many modern dropdown capabilities found in more robust alternatives.
The Select control for React. Initially built for use in KeystoneJS.
See react-select.com for live demos and comprehensive docs.
React Select is funded by Thinkmill and Atlassian. It represents a whole new approach to developing powerful React.js components that just work out of the box, while being extremely customisable.
For the story behind this component, watch Jed's talk at React Conf 2019 - building React Select
Features include:
The easiest way to use react-select is to install it from npm and build it into your app with Webpack.
yarn add react-select
Then use it in your app:
import React from 'react';
import Select from 'react-select';
const options = [
{ value: 'chocolate', label: 'Chocolate' },
{ value: 'strawberry', label: 'Strawberry' },
{ value: 'vanilla', label: 'Vanilla' },
];
class App extends React.Component {
state = {
selectedOption: null,
};
handleChange = (selectedOption) => {
this.setState({ selectedOption }, () =>
console.log(`Option selected:`, this.state.selectedOption)
);
};
render() {
const { selectedOption } = this.state;
return (
<Select
value={selectedOption}
onChange={this.handleChange}
options={options}
/>
);
}
}
import React, { useState } from 'react';
import Select from 'react-select';
const options = [
{ value: 'chocolate', label: 'Chocolate' },
{ value: 'strawberry', label: 'Strawberry' },
{ value: 'vanilla', label: 'Vanilla' },
];
export default function App() {
const [selectedOption, setSelectedOption] = useState(null);
return (
<div className="App">
<Select
defaultValue={selectedOption}
onChange={setSelectedOption}
options={options}
/>
</div>
);
}
Common props you may want to specify include:
autoFocus - focus the control when it mountsclassName - apply a className to the controlclassNamePrefix - apply classNames to inner elements with the given prefixisDisabled - disable the controlisMulti - allow the user to select multiple valuesisSearchable - allow the user to search for matching optionsname - generate an HTML input with this name, containing the current valueonChange - subscribe to change eventsoptions - specify the options the user can select fromplaceholder - change the text displayed when no option is selectednoOptionsMessage - ({ inputValue: string }) => string | null - Text to display when there are no optionsvalue - control the current valueSee the props documentation for complete documentation on the props react-select supports.
You can control the following props by providing values for them. If you don't, react-select will manage them for you.
value / onChange - specify the current value of the controlmenuIsOpen / onMenuOpen / onMenuClose - control whether the menu is openinputValue / onInputChange - control the value of the search input (changing this will update the available options)If you don't provide these props, you can set the initial value of the state they control:
defaultValue - set the initial value of the controldefaultMenuIsOpen - set the initial open value of the menudefaultInputValue - set the initial value of the search inputReact-select exposes two public methods:
focus() - focus the control programmaticallyblur() - blur the control programmaticallyCheck the docs for more information on:
The v5 release represents a rewrite from JavaScript to TypeScript. The types for v4 and earlier releases are available at @types. See the TypeScript guide for how to use the types starting with v5.
Thank you to everyone who has contributed to this project. It's been a wild ride.
If you like React Select, you should follow me on twitter!
Shout out to Joss Mackison, Charles Lee, Ben Conolly, Tom Walker, Nathan Bierema, Eric Bonow, Emma Hamilton, Dave Brotherstone, Brian Vaughn, and the Atlassian Design System team who along with many other contributors have made this possible ❤️
MIT Licensed. Copyright (c) Jed Watson 2022.