Adding a star on the top right side of an image

I would like to add a star on the top right side of an image which would get selected on a click.

<ion-item class="item-icon-right>
<i class="icon ion-android-star-outline"></i>
</ion-item>

This creates a list item on top of the image.

If I embed the image inside the ion-item - like below - The image takes 80 % of the column and star takes another 20%.

<ion-item class="item-icon-right" id="list-item14">
    <i class="icon ion-android-star-outline"></i>
    <img ng-src="data:image/jpeg;base64,{{images[0]}}" style="display: inline; width: 100%; height: 50%;">
  </ion-item>