Add img to the left of input in ion-item tag

Hey i want to add a logo to the left of an input(text-field) but using theese lines of code the logo doesnt show at all.

<ion-list>
			  <ion-item >
			  <img src="assets/img/fblogo.png"/>
			   <ion-input type="text" placeholder="Username"> <img src="assets/img/fblogo.png"/></ion-input>
			  </ion-item>
</ion-list>

Read the section about “Item Placement” in the ion-item docs.

Wow that was convenient! :stuck_out_tongue: thank you!