JSFiddle - React, Tailwind, and code Playground

by miSunLaughing

HTML

<div class="process"></div>

CSS

.process {
  height: 2px;
  background: #0f0;
  -webkit-animation: test 3s;
}

@-webkit-keyframes test {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}