ionic2 - show ion-icon in alert controller title and buttons
问题 In ionic 2 application, is that possible to add ion-icon in the alert controller like shown below let showAlertCtrl = this.alertCtrl.create({ title: '<ion-icon ios="ios-add" md="md-add"></ion-icon>' +'Add your info', cssClass: 'myCustomCSS', message: msg, enableBackdropDismiss: false, buttons: [ { text: '<ion-icon ios="iOS-search" md="md-add"></ion-icon>' +' Ok', cssClass: 'customAlertBtn', handler: (data: any) => { } },] }); showAlertCtrl.present(); Need to display ion-icon image on both