JSFiddle - React, Tailwind, and code Playground
HTML
<div class="parent">
<img src="http://yastatic.net/morda-logo/i/logo.svg" alt="">
</div>
CSS
.parent {
position: relative;
width: 104px;
height: 104px;
margin: 0 auto;
background: #eee;
}
img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
height: auto;
width: auto;
max-height: 104px;
max-width: 104px;
}