https://i.stack.imgur.com/W3CmF.png
I am struggling to incorporate the target icon into the autoComplete component. After reviewing the documentation, I have been unable to find a solution.
In TextInput, a similar outcome can be achieved by implementing the following:
<TextField
className={classes.margin}
id='input-with-icon-textfield'
label='TextField'
InputProps={{
startAdornment: (
<InputAdornment position='start'>
<AccountCircle />
</InputAdornment>
)
}}
/>
Is there a way to insert the target icon inside the autoComplete component? Here is my code sandbox link for reference.
Any assistance would be greatly appreciated! Thank you in advance! =)