InputPropsinterface

{
	name: string;
	title?: string | undefined;
	placeholder?: string | undefined;
	required?: boolean | undefined;
	disabled?: boolean | undefined;
	message?: string | undefined;
}
PropertyType
.namestring
The name="" prop of the input. required
.titlestring
Friendly title for the input.
.placeholderstring
Placeholder for the input. Defaults to title. Set to "" to show no placeholder.
.requiredboolean
Whether the input is required.
.disabledboolean
Whether the input is disabled.
.messagestring
Any error message for the input.

Base props shared by every form input (name, title, placeholder, required/disabled state, and error message).