lune-ui-lib
Version:
Lune UI Components Library
11 lines (10 loc) • 457 B
TypeScript
import React from 'react';
import { DropzoneOptions } from 'react-dropzone';
export interface DragAndDropFileUploadProps extends DropzoneOptions {
description?: string;
children?: React.ReactNode;
isUploading?: boolean;
rejectDescription?: string;
}
declare const DragAndDropFileUpload: React.ForwardRefExoticComponent<DragAndDropFileUploadProps & React.RefAttributes<Pick<HTMLInputElement, "click">>>;
export default DragAndDropFileUpload;