UNPKG

@searcly/widget

Version:

Searcly Visual Search Widget for React

10 lines (9 loc) 256 B
import React from 'react'; import { defaultTheme } from '../theme'; interface DropZoneProps { onDrop: (files: File[]) => void; loading?: boolean; theme?: typeof defaultTheme; } export declare const DropZone: React.FC<DropZoneProps>; export {};