JSFiddle - React, Tailwind, and code Playground

HTML

<div class="left-panel">
   <a href="#"><img src="http://dummyimage.com/201x103" alt="" width="201" height="103"></a>
   <hr />
   <a href="#"><img src="http://dummyimage.com/20x22" alt="" width="20" height="22"></a>
   <a href="#">Back</a>
</div>

CSS

.left-panel img{
    margin: 0 0 19px 23px;
    border: 3px solid #000;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.left-panel a ~ a img {
    border: none;
}