Description
I would expect to be able to have default SelectField styles in the theme with the following syntax.
selectField: {
iconStyle: {fill: 'rgba(0,0,0,0.54)'},
},
Since that didn't work I dug a little farther and expect this to work.
dropDownMenu: {
iconStyle: {fill: 'rgba(0,0,0,0.54)'},
},
That also didn't work and I've ended up using this code with doesn't seem to break other things I'd expect to break like underline color.
dropDownMenu: {
accentColor: 'rgba(0,0,0,0.54)',
},
Description
I would expect to be able to have default
SelectFieldstyles in the theme with the following syntax.Since that didn't work I dug a little farther and expect this to work.
That also didn't work and I've ended up using this code with doesn't seem to break other things I'd expect to break like underline color.