How to style react-select options

前端 未结 6 1541
甜味超标
甜味超标 2020-12-24 02:20

What\'s the best way to style a react-select component\'s (https://github.com/JedWatson/react-select) options?

I can target the select itself just fine,

6条回答
  •  暖寄归人
    2020-12-24 03:23

    I got use style:

    const options = [
        {label: "one", value: 1, style: { color: 'red' }},
        {label: "two", value: 2, style: { color: 'blue' }}
        // more options...
    ];
    ...
    
                            
        
    提交评论

提交回复
热议问题