material ui icon tooltip code example
Example: how to add an icon in the Material UI Text Field and show tooltip for that icon
<TextField
InputLabelProps={{ style: { pointerEvents: "auto" } }}
label={
<div>
TextFiled
<IconWithTooltip />
</div>
}
variant="outlined"
type="text"
/>