I'm currently working with the material UI tooltip component and I want to position my tooltip to the right of a dropdown, right next to the down arrow as shown in the image below:
https://i.stack.imgur.com/O2gwh.png
However, the way it is set up now, the tooltip appears below the select in an awkward manner.
<FormControl label='Identifier Type' style={{ width: '100%' }}>
<Select
...
/>
<Tooltip disableHoverListener onClose={handleTooltipClose} open={open} placement='right' title='Helper....'>
<Button variant="secondary" onClick={handleTooltipOpen}>
<Icon
size="small"
accessibleText='Delete Row'
name='help'
style={{ color: '4c505b' }}
/>
</Button>
</Tooltip>
</div>
</FormField>