UNPKG

phx-react

Version:

PHX REACT

10 lines (9 loc) 302 B
import * as React from 'react'; type Props = Readonly<{ 'data-test-id'?: string; accept?: string; label: string; onChange(files: FileList | null): void; }>; export default function FileInput({ accept, 'data-test-id': dataTestId, label, onChange }: Props): React.JSX.Element; export {};