I use the ionicons in a PWA developed with Stencil One and Ionic One
When I use icons like the following:
<a onClick={(e: UIEvent) => this.openForDeckOrSlide(e)}>
<ion-icon ios="md-color-fill" md="md-color-fill"></ion-icon>
</a>
<a onClick={() => this.deleteElement()}>
<ion-icon ios="md-trash" md="md-trash"></ion-icon>
</a>
Then weirdly the icons aren't correctly displayed, I get two times the same icons (see screenshots)


When I don't use specific icon but property name like the following I don't face the problem
<a onClick={(e: UIEvent) => this.openForDeckOrSlide(e)}>
<ion-icon name="color-fill"></ion-icon>
</a>
<a onClick={() => this.deleteElement()}>
<ion-icon name="trash"></ion-icon>
</a>
Might be related to another issue I opened today
I use the
ioniconsin a PWA developed withStencil OneandIonic OneWhen I use icons like the following:
Then weirdly the icons aren't correctly displayed, I get two times the same icons (see screenshots)
When I don't use specific icon but property
namelike the following I don't face the problemMight be related to another issue I opened today