import React from "react"; import classNames from "classnames"; import { ReactComponent as Checkmark } from "../assets/svg/arrow-down.svg"; export type Props = { /** * Control the state of checkbox */ isChecked?: boolean; /** * An Element next to the checkbox */ children?: React.ReactNode; } & Omit, "type">; const Checkbox = ({ children, className, isChecked, ...props }: Props) => { return ( ); }; export default Checkbox;