import React from "react";
import { Checkbox as AntdCheckbox } from "antd";

const Checkbox = (props) => {
  const { children, inputRef, ...rest } = props;

  return <AntdCheckbox ref={inputRef} {...rest}>{children}</AntdCheckbox>;
};

export default Checkbox;
