JSFiddle - React, Tailwind, and code Playground

by bowheart

HTML

<div>

</div>

CSS

@keyframes throbber {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

div {
  animation: throbber 1s infinite linear;
  border: 4px solid blue;
  border-right: none;
  border-left: none;
  border-radius: 50px;
  height: 50px;
  width: 50px;
}