JSFiddle - React, Tailwind, and code Playground
by graphettion
HTML
<div class="image">
<div class="overlay"></div>
</div>
CSS
.image {
background: url('http://cdn1.iconfinder.com/data/icons/round-simple-social-icons/58/facebook.png');
width: 58px;
height: 58px;
position: relative;
}
.overlay {
width: 100%;
height: 100%;
position: absolute;
background: #000;
opacity: 0.5;
border-radius: 30px;
}