JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css">
<div class="parent">
<div class="child">
<i class="fas fa-arrow-up"></i>
</div>
</div>
CSS
.parent {
width: 300px;
background: #f00;
height: 300px;
margin: 0 auto;
border-radius: 50%;
}
.child {
width: 150px;
margin: auto;
height: 100px;
}