I am struggling to implement a custom scroll style in Autocomplete Listbox.
https://i.sstatic.net/MifSm.png
After multiple attempts and thorough research, I have been unsuccessful in achieving the desired result.
Here is my most recent code:
<Autocomplete
fullWidth
popupIcon={<KeyboardArrowDownIcon />}
id="combo-box-demo"
options={allTableData}
noOptionsText={"Məhsul tapılmadı"}
getOptionLabel={(option) => option.name ?? option}
ListboxProps={{
style: {
maxHeight: "200px",
"&::-webkit-scrollbar": {
width: "20px",
},
},
}}