JSFiddle - React, Tailwind, and code Playground

by ajai jothi

HTML

<div class="checkmark"></div>

CSS

.checkmark {
  width: 24px;
  height: 24px;
  background: #000;
  border: 1px solid #ddd;
  border-radius: 100px;
}

.checkmark:after {
  display: block;
  content: 'L';
  font-family: arial;
  transform: scaleX(-1) rotate(-35deg);
  color: white;
  width: 24px;
  height: 24px;
  text-align: center;
  padding: 2px 0px 0 0;
}