Is there anyone who can help me figure out how to remove the default arrow in the list input field and replace it with a new arrow icon?
<body>
<form >
<label for="data-list">Choose a browser from this list
<input list="browsers" name="my-browser" placeholder="Enter color">
<datalist id="browsers">
<option value="Green"></option>
<option value="Red"></option>
<option value="Blue"></option>
<option value="Yellow"></option>
<option value="Black"></option>
</datalist>
</label>
</form>
</body>
Here is the default arrow I am referring to.
My goal is to replace the default arrow in the list input field with a new arrow icon.