Is it possible to add custom HTML elements to an icon to an Ag-grid context menu item? The following doesnt render any icon:
getContextMenuItems = (params) => [
{
name: 'Cancel items',
action: this.onCancelLocates(),
icon: <span><Icon name="cancel" size="small" /></span>
},
'separator',
'copy',
'copyWithHeaders',
'paste',
'separator',
'export'
]