How to put a icon inside side menu menu content right side

I have a side menu list i want to put a notification counter right side of the notification content
how can i do this please help me anyone

I want to do like this
imgpsh_fullsize_anim
any help would be appreciated
Thanks in advance

1 Like

Thanks for your response. i saw your reference link. but i want use in side menu how can i put this badge in side the array…
this is my app.html

    <ion-list>
      <button menuClose ion-item *ngFor="let p of homepages" (click)="openPage(p)">
       <span> {{p.title}}</span>
       
       <div class="icon-menublock"><img [src]="p.icon"></div>
      </button>
    </ion-list>

app.ts

 this.homepages = [
      { title: 'YYYY', component: YYYY, icon:'assets/imgs/menu-home-ic.png'},
      { title: 'XXXXXX', component: XXXXX, icon:'assets/imgs/menu-post-ic.png'},
 { title: 'XXXXXX', component: XXXXX, icon:'assets/imgs/menu-post-ic.png'},
  
    ];