Fixed #2401 - FileUpload | Customizable Icons

This commit is contained in:
Tuğçe Küçükoğlu 2022-04-20 16:05:18 +03:00
parent 7aab982030
commit 9c9d5c3a03
4 changed files with 69 additions and 7 deletions

View file

@ -113,6 +113,24 @@ const FileUploadProps = [
default: "true",
description: "Whether to cancel the upload button."
},
{
name: "chooseIcon",
type: "string",
default: "pi pi-plus",
description: "Icon of the choose button."
},
{
name: "uploadIcon",
type: "string",
default: "pi pi-upload",
description: "Icon of the upload button."
},
{
name: "cancelIcon",
type: "string",
default: "pi pi-times",
description: "Icon of the cancel button."
},
{
name: "style",
type: "any",