In order to use this component, you can implement it and use it like you would normally use react-select. It should accept all of the props that the original takes, however customizing the theme or the components could break this implementation. There are also, however, a few extra things you can do with this wrapper that pull from the chakra library.
- You can pass the
sizeprop with eithersm,md, orlg. These will reflect the sizes available on the Chakra<Input />component (with the exception ofxsbecause it's too small to work). - In your options objects, you can add the key
isFixedto emulate the example in the react-select docs. - You can pass the
colorSchemeprop to the select component to change all of the selected options tags' colors. You can view the whole list of available color schemes in [the Chakra docs