JSFiddle - React, Tailwind, and code Playground

HTML

<div class="sidebar-item-title"><i></i><span>Вызвать курьера<br>длиннй текст</span></div>

CSS

.sidebar-item-title{
	font-size:14px;
	color:#333333;
	text-transform:uppercase;
	position:relative;
	padding-left:45px;
}
.sidebar-item-title i{
	position:absolute;
	z-index:1;
	top:0;
	left:0px;
	width:40px;
	height:40px;
	background:#fff;
	border:1px solid #c6c6c6;
	border-radius:100%;
}
.sidebar-item-title i:before{
	content:'';
	position:absolute;
	top:11px;
	left:-14px;
	width:51px;
	height:46px;
	background:url(http://guidegroup.ru/jsfiddle/icon-shadow-mini.png) no-repeat;
}
.sidebar-item-title i:after{
	content:'';
	position:absolute;
	top:50%;
	margin-top:-8px;
	left:50%;
	margin-left:-7px;
	width:14px;
	height:16px;
	background:url(http://guidegroup.ru/jsfiddle/icon-features-like.png) no-repeat;
}
.sidebar-item-title span{
	display:inline-block;
	position:relative;
	padding:8px 10px 8px 5px;
	border-bottom:1px solid #c7c7c7;
}
.sidebar-item-title span:before{
	content:'';
	position:absolute;
	left:-11px;
	bottom:-1px;
	width:11px;
	height:11px;
	background:url(http://guidegroup.ru/jsfiddle/icon-line.png) no-repeat;
}