UNPKG

@arteneo/forge-uppy

Version:
15 lines (14 loc) 553 B
import React from "react"; import { UppyDragDropProps } from "./UppyDragDrop"; interface UppyDragDropThumbnailProps extends UppyDragDropProps { height?: number; path: string; label?: React.ReactNode; hasError: boolean; help?: React.ReactNode; required: boolean; disabled: boolean; } declare const UppyDragDropThumbnail: ({ height, path, label, hasError, help, required, disabled, uppy, ...props }: UppyDragDropThumbnailProps) => React.JSX.Element; export default UppyDragDropThumbnail; export { UppyDragDropThumbnailProps };