import React from "react";
import { Switch as AntdSwitch } from "antd";

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

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

export default Switch;
