JSFiddle - React, Tailwind, and code Playground

HTML

<div class="parent">
<img src="https://www.google.co.in/images/srpr/logo3w.png">
</div>

CSS

.parent{
width:200px;
height:200px;
text-align:center;
display:table-cell;
vertical-align:middle;
    background:rgba(0,0,0,0.2);
}

.parent img{
width:150px;
height:150px;
}