title
Description
Optional. Sets a tooltip text with additional info about the controlUsage
title?: string;
Example
<Combo
options={users}
textField="label"
error={true}
value={104}
title="Incorrect option"
>
{(option) => option.label}
</Combo>
Related article: Adding a title
Related sample: Combo