showWhen="browser" equivalent

So I managed to create a pwa of my app and it looks really good out of the box, but it seems some things I need to modify, for example I have

<button ion-button (click)="dismiss()"> <span ion-text class="cancelButton" showWhen="ios">Cancel</span> <ion-icon name="md-close" showWhen="android,windows"></ion-icon> </button>

I would like the “x” icon to also show when the app is in pwa or what ever the equiv of showWhen=“browser” is.

Documentation says nothing, i simply want to show the x for windows, android and browse, and cancel for ios as my code says

Looking at the Platform docs, have you tried core?

That work, forgot about that, one, thank you