I am using material-table with editable. When I add "onRowUpdate" and "onRowDelete" the buttons appear with standard icons, I want to change the icon of the trash can, space them apart and change their size but can't seem to find out how.
I am declaring it like this:
const editable = {
onRowUpdate: async (updateRow) => {
put(endpoint, {companyName: updateRow.companyName, id: updateRow.id}, auth.token, dispatch)
},
onRowDelete:async (deleteRow) => {
del(endpoint, {id: deleteRow.id}, auth.token, dispatch)
}
}