Add switches
This commit is contained in:
42
frontend/src/app/components/checkbox/CheckBox.jsx
Normal file
42
frontend/src/app/components/checkbox/CheckBox.jsx
Normal file
@@ -0,0 +1,42 @@
|
||||
"use client";
|
||||
import { useState } from "react";
|
||||
import CheckIcon from "../icons/check";
|
||||
import styles from "./styles.module.css";
|
||||
import CloseIcon from "../icons/close";
|
||||
import CheckedIcon from "../icons/switchIcons/checked";
|
||||
import UnCheckedIcon from "../icons/switchIcons/unchecked";
|
||||
|
||||
const CustomCheckbox = ({ checked, onChange, id }) => {
|
||||
const [isChecked, setIsChecked] = useState(false);
|
||||
return (
|
||||
<>
|
||||
<input
|
||||
type="checkbox"
|
||||
id={id}
|
||||
className={styles.check}
|
||||
checked={checked}
|
||||
onChange={() => {
|
||||
setIsChecked(!isChecked);
|
||||
onChange;
|
||||
}}
|
||||
/>
|
||||
|
||||
<label htmlFor={id} className={styles.switch}>
|
||||
<span className={styles.knob}>
|
||||
{isChecked ? (
|
||||
<CheckedIcon
|
||||
width={16}
|
||||
height={16}
|
||||
color="#4F378A"
|
||||
viewBox="0 0 20 20"
|
||||
/>
|
||||
) : (
|
||||
<UnCheckedIcon width={16} height={16} color="#fff" />
|
||||
)}
|
||||
</span>
|
||||
</label>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default CustomCheckbox;
|
||||
Reference in New Issue
Block a user