import { clsx } from "clsx"; import styles from "./Checkbox.module.scss"; export const Checkbox = ({ checkboxId, variable, toggleFunction, size = "2.8rem", color = "var(--primary_600_color)", borderWidth = "0.2rem", padding = "2rem", }) => { const wrapper_class_names = clsx(styles.checkbox_wrapper, { [styles.is_disabled]: variable.state === "pending", }); return (
); };