UNPKG

nextuiq

Version:

NextUIQ is a modern, lightweight, and developer-friendly UI component library for React and Next.js. Built with TypeScript and Tailwind CSS, it offers customizable, accessible, and performance-optimized components with built-in dark mode, theme customizat

7 lines (6 loc) 181 B
import { default as React } from 'react'; interface DropzoneProps { onFileUpload?: (files: File[]) => void; } export declare const Dropzone: React.FC<DropzoneProps>; export {};