If you want the icon in the dropdown element to not be visible you can use the code below
<style>
#drop-custom {
background-size: 0px !important;
}
</style>
The dropdown element to target will need the HTML ID attribute set. In the code above that ID is drop-custom
You can put this code into an HTML element onto the page
This will make it so the icon is not visible to the user