react-data-entry
Version:
React data entry components library
25 lines (24 loc) • 620 B
TypeScript
type Props = {
data: {
message?: string;
label?: string;
labelWidth?: string;
required?: boolean;
direction?: "row" | "column";
width?: string;
placeholder?: string;
formatCalendar?: string;
min_date?: string;
max_date?: string;
[key: string]: any;
};
field: {
name: string;
value: any;
onChange: (e: any) => void;
[key: string]: any;
};
size?: "large" | "middle" | "small";
};
declare const CTime: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default CTime;