UNPKG

@ark-ui/react

Version:

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

9 lines (8 loc) 460 B
import { ItemProps } from '@zag-js/file-upload'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface FileUploadItemBaseProps extends ItemProps, PolymorphicProps { } export interface FileUploadItemProps extends HTMLProps<'li'>, FileUploadItemBaseProps { } export declare const FileUploadItem: ForwardRefExoticComponent<FileUploadItemProps & RefAttributes<HTMLLIElement>>;