JSFiddle - React, Tailwind, and code Playground

by CreativeDreams

HTML

<div class="mode-toggle"></div>

CSS

.mode-toggle {
  display: flex;
  align-items: center;
  position: relative;
  width: 35px;
  height: 20px;
  background: #2872fa;
  border-radius: 50px;
  padding: 0 3px;
  box-sizing: border-box;
}

.mode-toggle:before {
  content: '';
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 100%;
  transition: all 0.2s ease;
}

.mode-toggle:hover:before {
  margin-left: 15px;
}