I'm looking for a way to replace the current icon in the Material UI data grid with a different one. Below is the code I'm using to implement the data grid component:
https://i.sstatic.net/griFN.png
import { DataGrid, DataGridProps, GridColDef,GridColumnGroupingModel } from '@mui/x-data-grid'
export type TableColDef = GridColDef
export type TableColumnGroupingModel = GridColumnGroupingModel
export const Table = (p: DataGridProps) => {
return <DataGrid {...p} />
}
I've attempted to modify it using CSS and searched through the documentation, but I haven't found a solution that works yet. Any help would be greatly appreciated!