You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
512 B

// it has style inside index.scss ---> // Start Switch && end Switch
import React from "react";
const Switch = () => {
return (
<label for="toogleA" class="cursor-pointer">
<div class="relative">
<input id="toogleA" type="checkbox" class="sr-only" />
<div class="w-10 h-4 bg-gray-400 rounded-full shadow-inner"></div>
<div class="dot absolute w-6 h-6 bg-gray-200 rounded-full shadow -left-1 -top-1 transition"></div>
</div>
</label>
);
};
export default Switch;