UNPKG

react-data-entry

Version:
25 lines (24 loc) 632 B
type Props = { data: { message?: string; label?: string; labelWidth?: string; required?: boolean; direction?: "row" | "column"; width?: string; type_select?: "multiple" | "one"; options?: any[]; placeholder?: string; [key: string]: any; }; field: { name: string; value: any; onChange: (e: any) => void; [key: string]: any; }; size?: "large" | "middle" | "small"; className?: string; }; declare const CSelector: (props: Props) => import("react/jsx-runtime").JSX.Element; export default CSelector;