UNPKG

372 BTypeScriptView Raw
1export interface FilePickerBtnProps {
2 onClick?: Function;
3 onChange?: Function;
4 multiple?: boolean;
5 name?: string;
6 color?: string;
7 children?: React.ReactType;
8 allowedFileTypes?: Array<string>;
9 maxSize?: number;
10 'data-testid'?:string;
11}
12
13declare const FilePickerBtn: React.ComponentType<FilePickerBtnProps>;
14
15export default FilePickerBtn;
\No newline at end of file