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
To remove the icon,
ion-select::part(icon) { display: none !important; }
To modify the icon,
ion-select::part(icon) { color: #ffa612 !important; }