JSFiddle - React, Tailwind, and code Playground

HTML

<div>
  <img src="https://www.google.com/images/srpr/logo3w.png" />
  <span>Some text</span>
</div>

CSS

div {
    display: table;
    width: 100%;
    background: lightgrey;
}

img, span {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

img {
    padding: 10px 0 10px 10px;
}