UNPKG

@dossierhq/design

Version:

The design system for Dossier.

10 lines (9 loc) 302 B
import type { ChangeEventHandler, JSX } from 'react'; interface FileProps { className?: string; accept?: string; boxed?: boolean; onChange?: ChangeEventHandler<HTMLInputElement>; } export declare function File({ className, accept, boxed, onChange }: FileProps): JSX.Element; export {};