JSFiddle - React, Tailwind, and code Playground

HTML

<div class="myDiv">
    <img src="myImage"/>
    <a href="#">My Link!</a>
</div>

CSS

.myDiv{
    background:#EEE;
    border-bottom: solid 1px #000;
}
.myDiv img
{
    /* NOTE: The sizes here are just for purposes of demonstration! */
    width:40px;
    height:40px;
}

.myDiv a { vertical-align:middle;}