Hi @DavidIhl , the isLoading prop renders the spinner component within the Select component to give the indication that something is being fetched. This is helpful when you have a list of options that you want to fetch from an API before loading it into the options array.
The below is an example use case of how you could use the prop
const App = () => {
const [isLoading, setIsLoading] = useState(true)
const [options, setOptions] = useState([])
useEffect(()=> {
fetchOptions().then(res => {
setOptions(res);
setIsLoading(false);
})
}, [])
return <Select options={options} isLoading={isLoading} />
}