TextInputPropsinterface

{
	rows?: number | undefined;
	multiline?: boolean;
	input?: StringInputType;
	min?: number | undefined;
	max?: number | undefined;
	formatter?: TextFormatter | undefined;
}
PropertyType
.rowsnumber
.multilineboolean
.inputStringInputType
type="" prop for HTML <input /> tags that are relevant for strings.
.minnumber
.maxnumber
.formatterTextFormatter
Optional formatter — when provided the value is reformatted on blur and when initially displayed.

Props for TextInput, a single- or multi-line text input bound to a string value.