title
Description
Optional. Sets a tooltip text with additional info about the Text controlUsage
title?: string;
Example
<Field label="Last name" error>
{(id) => (
<Text
id={id}
error
title="Invalid value"
/>
)}
</Field>
Related article: Adding a title
Related sample: Text Inputs