@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
8 lines (7 loc) • 313 B
TypeScript
import type { FileInputFactory, FileInputProps } from './FileInput';
export { FileInput } from './FileInput';
export type { FileInputProps, FileInputFactory };
export declare namespace FileInput {
type Props<Multiple extends boolean = false> = FileInputProps<Multiple>;
type Factory = FileInputFactory;
}