import { Input as AntdInput } from "antd";

const Input = (props) => {
  return <AntdInput {...props} />;
};

export default Input;
