FileInput
Surface for accepting files
import { FileInput } from '@kalidao/reality'
name | type | default | description |
---|---|---|---|
accept | string | - | - |
autoFocus | boolean | - | - |
defaultValue | { name?: string; type: string; url: string; } | - | - |
disabled | boolean | - | - |
error | ReactNode | - | - |
id | string | - | - |
maxSize | number | - | Size in megabytes |
name | string | - | - |
required | boolean | - | - |
tabIndex | number | - | - |
onBlur | FocusEventHandler<HTMLInputElement> | - | - |
onError | (error: string) => void | - | - |
onChange | (file: File) => void | - | - |
onFocus | FocusEventHandler<HTMLInputElement> | - | - |
onReset | () => void | - | - |
ref | Ref<HTMLElement> | - | - |