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