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