@aldabil/react-scheduler
Version:
React scheduler component based on Material-UI & date-fns
20 lines (19 loc) • 669 B
TypeScript
interface EditorInputProps {
variant?: "standard" | "filled" | "outlined";
label?: string;
placeholder?: string;
required?: boolean;
min?: number;
max?: number;
email?: boolean;
decimal?: boolean;
disabled?: boolean;
multiline?: boolean;
rows?: number;
value: string;
name: string;
onChange(name: string, value: string, isValid: boolean): void;
touched?: boolean;
}
declare const EditorInput: ({ variant, label, placeholder, value, name, required, min, max, email, decimal, onChange, disabled, multiline, rows, touched, }: EditorInputProps) => import("react/jsx-runtime").JSX.Element;
export { EditorInput };