OptionalautoComplete?: stringOptionalautoFocus?: booleanIndicates if the input should be auto-focused.
OptionaldefaultCountryCode?: CountryCode | "USER"The default country code to use when blank initially (two-digit ISO code for the country). Supports the special
value "USER", which uses the user's locale to pick the default country code (this is the default value for this
prop).
Optionaldisabled?: booleanIndicates if the input is disabled.
Optionalid?: stringThe ID of the input.
Optionalinvalid?: booleanIndicates if the input is invalid.
Optionalname?: stringThe name of the input.
OptionalnoCountryCode?: booleanPrevents the country code input from rendering. Instead renders a single input.
OptionalonBlur?: () => voidA callback function to call when focus is removed from the input.
OptionalonFocus?: () => voidA callback function to call when the input becomes focused.
Optionalplaceholder?: stringPlaceholder text to display when the value is blank.
A callback function to update the input value when a change happens.
OptionalsideEffect?: (v: TextFieldValue) => voidA side effect function to call when the value changes as a result of user interaction with this input, and not external updates to the field value.
The value of the input.
Auto-complete option for the input (supports the usual HTML values).