File tree Expand file tree Collapse file tree
src/custom/CatalogDesignTable Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import { VIEW_VISIBILITY } from '../VisibilityChipMenu/VisibilityChipMenu';
1515import AuthorCell from './AuthorCell' ;
1616import { getColumnValue } from './helper' ;
1717import { L5DeleteIcon , NameDiv } from './style' ;
18+ import RemoveCircleIcon from '@mui/icons-material/RemoveCircle' ;
1819
1920interface TableMeta extends MUIDataTableMeta {
2021 rowIndex : number ;
@@ -224,7 +225,7 @@ export const createDesignsColumnsConfig = ({
224225 title : isFromWorkspaceTable ? 'Move Design' : 'Delete' ,
225226 disabled : isFromWorkspaceTable ? ! isRemoveAllowed : ! isDeleteAllowed ,
226227 onClick : ( ) => handleDeleteModal ( rowData ) ( ) ,
227- icon : < L5DeleteIcon />
228+ icon : isFromWorkspaceTable ? < RemoveCircleIcon style = { { color : theme ?. palette . icon . default } } /> : < L5DeleteIcon />
228229 }
229230 ] ;
230231
You can’t perform that action at this time.
0 commit comments