How to style react-select options

前端 未结 6 1567
甜味超标
甜味超标 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:00

    const CustomStyle = {
      option: (base, state) => ({
        ...base,
        backgroundColor: state.isSelected ? {Color1} : {Color2},
      })
    }
    
                            
        
    提交评论

提交回复
热议问题