Looking for help with aligning elements in this code snippet:
<TextField id="outlined-basic" label="22Keyword" defaultValue={"test123"} variant="outlined" />
<IconButton aria-label="delete">
<AddCircleOutlineOutlinedIcon />
</IconButton>
This is how it currently appears: https://i.stack.imgur.com/XWdw5.png
The "+" icon doesn't seem to align properly with the text box. Attempts to adjust padding have caused issues with the hover effect:
<TextField id="outlined-basic" label="22Keyword" defaultValue={"test123"} variant="outlined" />
<IconButton aria-label="delete" style={{paddingTop: 19}}>
<AddCircleOutlineOutlinedIcon />
</IconButton>
https://i.stack.imgur.com/IUrze.png
Any suggestions on how to ensure proper alignment of all elements?