Fixed #1407 - style and class props for FileUpload

This commit is contained in:
Tuğçe Küçükoğlu 2021-08-04 17:26:21 +03:00
parent 08727a2b9e
commit 39f9b55be3
4 changed files with 33 additions and 2 deletions

View file

@ -112,6 +112,18 @@ const FileUploadProps = [
type: "boolean",
default: "true",
description: "Whether to cancel the upload button."
},
{
name: "style",
type: "any",
default: "null",
description: "Inline style of the component."
},
{
name: "class",
type: "string",
default: "null",
description: "Style class of the component."
}
];