JSFiddle - React, Tailwind, and code Playground

by atif_kht

HTML

<div class="share-vote">Share your vote</div>

CSS

.share-vote{
  text-transform: capitalize;
  width: 4.2em;
  background: #548cc9;
  color: #fff;
  text-align: center;
  padding: .6em;
  margin: 2em auto;
  border-radius: 2.3em;
  position: relative;
}

.share-vote:after {
  content: "";
  height: 0;
  width: 0;
  border-top: 13px solid transparent;
	border-right: 26px solid #548cc9;
	border-bottom: 13px solid transparent;
  position: absolute;
  left: -4%;
  bottom: 0%;
  transform: rotate(75deg);
  border-radius: 6px;
}