UNPKG

react-data-entry

Version:
23 lines (22 loc) 575 B
type Props = { data: { message?: string; label?: string; labelWidth?: string; required?: boolean; direction?: "row" | "column"; width?: string; placeholder?: string; type_text?: "text" | "number"; [key: string]: any; }; field: { name: string; value: string; onChange: (e: any) => void; [key: string]: any; }; size?: "large" | "middle" | "small"; }; declare const CLink: (props: Props) => import("react/jsx-runtime").JSX.Element; export default CLink;