I am using the community version of @mui/x-data-grid
.
I have this column defintion:
const columns = [
{
field: "actions",
type: "actions",
width: 100,
getActions: (cell) => [
<GridActionsCellItem
label={strings.addSome}
onClick={() => openAddModal(cell.row)}
showInMenu
/>,
<GridActionsCellItem
label={strings.pickSome}
onClick={() => openPickModal(cell.row)}
showInMenu
/>,
<GridActionsCellItem
label={strings.remove}
onClick={() => openRemoveModal(cell.row)}
showInMenu
/>,
<GridActionsCellItem
label={strings.modifyQty}
onClick={renderComingSoon}
showInMenu
/>,
],
},
];
This result in the following output:
I want to change the display icon for the action menu button, is there an option to do si?