JSFiddle - React, Tailwind, and code Playground

HTML

<div class="testdiv">
    <img src="./test.png">
</div>

SCSS

.testdiv {
  font-size: rem(12);
  height: 80px;
  display:flex;
  align-items: center;
  justify-content: center;
  width:100px;
  height:100px;
  border:5px solid red;
  img {
    margin-left: 0px;
    height: 16px;
    width: 16px;
    text-align: center;
  }
}