The React Select is a minimal select component for reactjs.
npm install @zener/react-selectThe React Select is a customizable and accessible dropdown select component for reactjs, built from scratch for flexibility and performance. Supports single and multi-select options, with an intuitive API for easy integration.

You can install the React Select component via npm:
``bash`
npm i @zener/react-selectUsage
#### Basic Implementation
`jsx
import Select from '@zener/react-select';
import '@zener/react-select/index.css';
const App = () => {
const [selected, setSelected] = useState(undefined);
const options = [
{ label: 'apple', value: 'apple' },
{ label: 'ball', value: 'ball' },
{ label: 'cat', value: 'cat' },
{ label: 'dog', value: 'dog' },
];
return (
value={selected}
onChange={(_,val) => {
setSelected(val);
}}
options={async () => options}
/>
);
};
``