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 modify the icon, call this function
async removeSelectCaret(id){ const select = await (window.document.querySelector(`#${id}`) as HTMLIonSelectElement).componentOnReady(); select.shadowRoot.childNodes[1]['style'].display="none"; }