label
Description
Optional. Sets a label for the control inside a fieldUsage
label?: string;
Example
<Field label="Text">
{({ id }) => (
<Text id={id} />
)}
</Field>
Related article: Setting a label for a control
Related sample: Field
label?: string;
<Field label="Text">
{({ id }) => (
<Text id={id} />
)}
</Field>
Related article: Setting a label for a control
Related sample: Field