Is there a way to adjust the font size of the drop-down items?
I have tried various methods to change the font size, including:
How do I change Material UI Autocomplete font size?
How to change fontsize of options in Material ui autocomplete?
Unfortunately, these methods don't seem to work for me, probably because they are intended for version 4.
Below is the code snippet for my Autocomplete component:
<Autocomplete
size="small"
disablePortal
options={getVisaOptions()}
renderInput={(params) => <TextField {...params} label="Select VISA"/>}
/>