How change active tab color in React material-ui?

后端 未结 6 854
暖寄归人
暖寄归人 2021-02-11 22:01

How I can change the color of the active tab?

I mean, this pink line, look at the pic.

6条回答
  •  离开以前
    2021-02-11 22:10

    @Risa's solution works just fine and should be the accepted answer. My example of her explanation looks like this:

    
        
        
    
    

    and the styles:

    const styles = theme => ({
      indicator: {
        backgroundColor: 'white',
      },
    })
    

提交回复
热议问题