Can the delete button in the Antd Upload box be removed?

clipboard.png

Is there any way to remove this delete button?
I can cancel the delete event, but I don"t know how to remove this icon.

Apr.26,2021

write your own style to hide


add a style to this DOM

display:none

clipboard.png


change the style to hide


:global(.anticon-delete){
    display:none;
}

showUploadList: {

showRemoveIcon: false

}

Menu