当使用react-select v2时,我无法弄清楚如何设置输入字段的字体。 我尝试过以下方法:
input: (base) => ({
...base,
fontFamily: 'Arial',
fontSize: 13,
fontWeight: 500,
color: 'green'
})
color
正在相应地工作,但没有应用任何其他字体样式。
还有一种方法可以在dropdownIndicator
悬停时设置control
的颜色吗?
喜欢:
control: (base, { isFocused }) => ({
...base,
':hover': {
### Set the dropdownIndicator Color
},
}),
我知道v2仍处于测试阶段,但我真的很感激一些帮助:)