Is it possible to make the options list only shown when click the arrow icon instead of the textfield?
I checked the documentations but couldn't find the solution. Example
Autocomplete has the open prop that you can use to control it :
const [open, setOpen] = React.useState(false);
<Autocomplete
open={open}
onOpen={() => {
setOpen(true);
}}
onClose={() => {
setOpen(false);
}}