How to add custom ionic 2 icon, I have svg file, I need to add icon in menu
this.pages = [ {icon: 'Test', title: 'Logout', component: LoginPage } ]; <ion-list> <button menuClose ion-item *ngFor="let p of pages" (click)="openPage(p)"> <ion-icon name="{{p.icon}}" svgversion item-left></ion-icon> {{p.title}} </button> </ion-list>
layout.scss
ion-ion[name="test"][svgversion] { content: url("../../img/accountsDeposits.svg"); }
source share