I have a drop-down list that I want to customize. The issue is illustrated below:
https://i.sstatic.net/hzVtl.png
I'm looking to center the text "choose format" within the field and adjust the font size.
return (
<FormControl sx={{ m: 1, minWidth: 150 }} size="small">
<InputLabel>Choose format</InputLabel>
<Select
value={age}
label="Choose format"
onChange={handleChange}
sx={{
"& .MuiSelect-select": {
paddingTop: 0.1,
paddingBottom: 0.4,
},
}}
>
</Select>
</FormControl>
);