How to change RadzenFileInput

Is it possible to customize the RadzenFileInput to look something like this?
I've already tried everything and nothing seems to work

Hi @SomethingLikeThat,

You can't add a new button in RadzenFileInput at the moment. Changing the delete icon is possible via CSS:

.rz-icon-trash::before {
    content: 'delete' !important;
}

1 Like