I'm trying to implement ion-searchbar
in my Ionic 4 app.
<ion-toolbar mode="ios">
<ion-grid>
<ion-row>
<ion-searchbar></ion-searchbar>
</ion-row>
</ion-grid>
</ion-toolbar>
but, it throws below error in the browser console. I was not able to display clear text icon in the searchbar.
Cannot find "/dist/ionicons/svg/ios-close-circle.svg" in ionicons@5.0.0
Please note I have these two script files in the index.html
<script type="module" src="https://unpkg.com/ionicons@5.0.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.0.0/dist/ionicons/ionicons.esm.js"></script>
Could anyone please help.