first commit

This commit is contained in:
Olu Amey
2023-01-16 13:09:45 -05:00
commit a6ebce376c
271 changed files with 39454 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import React from "react";
export default function SwitchCom({ className, value, handler }) {
return (
<>
<div
onClick={handler}
className={`switch-btn ${
value ? "active" : ""
} w-[44.04px] h-[20.85px] rounded-full cursor-pointer ${
className || ""
}`}
>
<div className="inner-circle w-[17.76px] h-[17.76px] bg-white shadow-md rounded-full"></div>
</div>
</>
);
}