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
15 lines (14 loc) • 479 B
TypeScript
export interface FileInputProps {
className?: string;
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
label?: string;
accept?: string;
multiple?: boolean;
required?: boolean;
disabled?: boolean;
id?: string;
name?: string;
"aria-label"?: string;
"aria-describedby"?: string;
}
export declare const FileInput: import('react').ForwardRefExoticComponent<FileInputProps & import('react').RefAttributes<HTMLInputElement>>;