JSFiddle - React, Tailwind, and code Playground

by Artur Maizelev

HTML

<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
<div class="wrapper">
  <div class="hand default">
    <i class="fas fa-thumbs-up"></i>
  </div>
  <div class="hand active">
    <i class="fas fa-thumbs-up"></i>
  </div>
</div>

CSS

.wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fa-thumbs-up {
  font-size: 8em;
  color: #adb5bc;
  cursor: pointer;
}

.active .fa-thumbs-up {
  color: #1d8efa;
  display: none;
}

.default .fa-thumbs-up {
  color: #1d8efa;
}

@keyframes disappear {
  0% {
    display: none;
  }
}