import clsx from "clsx";
import type { InputHTMLAttributes } from "react";
import styles from "./Checkbox.module.css";
interface Props {
id?: string;
checked?: boolean;
disabled?: boolean;
indeterminate?: boolean;
children?: string | JSX.Element;
onChange?: InputHTMLAttributes["onChange"];
style?: React.CSSProperties;
}
const Checkbox: React.ComponentType = ({
id,
checked,
disabled,
indeterminate,
onChange,
children,
style,
}) => {
return (
);
};
export default Checkbox;