UNPKG

react-data-entry

Version:
23 lines (22 loc) 522 B
import React from "react"; type Props = { data: { message?: string; label?: string; labelWidth?: string; required?: boolean; direction?: "row" | "column"; width?: string; placeholder?: string; [key: string]: any; }; field: { name: string; value: any; onChange: (e: any) => void; [key: string]: any; }; size?: "large" | "middle" | "small"; }; declare const CUpload: React.FC<Props>; export default CUpload;