UNPKG

dynamic-modal

Version:

The dynamic-modal is a solution of creation different modals into project using a json configuration file

13 lines (12 loc) 319 B
import { ChangeEvent, CSSProperties } from 'react'; export interface ICustomUpload { id?: string; value?: string; onChange: (event: ChangeEvent<HTMLInputElement>) => void; accept?: string; label?: string; helpText?: string; style?: CSSProperties; name: string; disabled?: boolean; }