import "./index.scss";

interface SwitchProps extends React.InputHTMLAttributes<HTMLInputElement> {}

const Switch = ({ ...props }: SwitchProps) => {
  return (
    <label className="input-switch">
      <input type="checkbox" {...props} />
      <span className="slider round"></span>
    </label>
  );
};

export default Switch;
