UNPKG

@ark-ui/react

Version:

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

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