UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

9 lines (8 loc) 490 B
import { DropzoneProps } from '@zag-js/file-upload'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface FileUploadDropzoneBaseProps extends PolymorphicProps, DropzoneProps { } export interface FileUploadDropzoneProps extends HTMLProps<'div'>, FileUploadDropzoneBaseProps { } export declare const FileUploadDropzone: ForwardRefExoticComponent<FileUploadDropzoneProps & RefAttributes<HTMLDivElement>>;