I have a field like this:
<Field
name="invoice"
label={
<React.Fragment>
Click the button{' '}
<IconTooltip/>
</React.Fragment>
}
inputType="checkbox"
/>
I tried to add the icon in the label name. The code is working well. But it keeps warning me:
react-jsx-dev-runtime.development.js:118 Warning: Failed prop type: Invalid prop label of type object supplied to Field, expected string.
Is there any way i can fix that?
I am very grateful for your help.