JSFiddle - React, Tailwind, and code Playground

HTML

<div class="user-header">
	<img src="https://dezinfo.net/images5/image/09.2014/soldier_transformation/soldier_transformation_01.jpg" alt="">
	<span>Имя мужика</span>
	<div class="bottom">asdasdasd</div>
</div>

CSS

.user-header{
  font-weight: 500;
  color: #555;
  font-size: 20px;
}

.user-header img{
  width: 100px;
  height: 100px;
  border-radius: 100px;
  margin: 5px;
  float: left;
}

.user-header span{
  font-weight: normal;
  font-size: 16px;
}

.bottom {
	clear: both;
}