Search code examples
reactjstabsmaterial-uiunderline

How can I change the underline color of MaterialUI's React Tabs component?


I noticed there is no documentation on MaterialUI's website in regard to changing the underline color of their Tabs component...

http://www.material-ui.com/#/components/tabs


Solution

  • This property can be changed with the inkBarStyle props:

    <Tabs inkBarStyle={{backgroundColor: '#e77600'}}>
       <Tab label='Tab 1'/>
       <Tab label='Tab 2'/>
    </Tabs>