I need to give a custom scroll style in Autocomplete Listbox.
I tried and research it and none of them worked.
My last codes
<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",
},
},
}}
