Reputation: 1095
I am using material UI Data Grid, I tried searching on web on How to remove icon-separator in material UI DataGrid but couldn't find any references. How can we remove it, I don't want them in my table header
Upvotes: 2
Views: 2432
Reputation: 1952
Apply this style to the header
'& > .MuiDataGrid-columnSeparator': {
visibility: 'hidden',
},
Upvotes: 3