I want to remove the inbuilt grey small caret from ion-select, and use my custom caret(arrow) instead.
ion-select
Code:
ion-select { color: grey
I found a way to remove default icon with css, using ::part directive:
::part
&::part(icon) { display: none; }
and the arrow disappear.