I have a side menu populated with an ion-list, I have a little SVG image that can go with each element in the list. But I don’t know how to include this with the HTML without ruining the formatting and alignment of the text?
<ion-list> <button menuClose ion-item *ngFor="let p of items_array" (click)="selectItem(p)"> {{p | capitalize}} </button> </ion-list>
I really appreciate the help!