I want to change the font size of the drop down items.
I tried different ways of changing font size as follows,
How do I change Material UI Autocomplete font size?
How to change fontsize of options in Material ui autocomplete?
But those ways are not working for me, hope it is due to they are for version 4.
Here is my Autocomplete component.
<Autocomplete
size="small"
disablePortal
options={getVisaOptions()}
renderInput={(params) => <TextField {...params} label="Select VISA"/>}
/>