JSFiddle - React, Tailwind, and code Playground

HTML

<div class="img">
    <img src="http://i.imgur.com/lPyIh.jpg" >
    <i class="small"></i>
</div>

CSS

.img {
    position: relative;
    display: inline-block; 
}
.small {
    width: 50px;
    height: 50px;
    background: url(http://i.imgur.com/xdbuG.jpg) no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}