import React from 'react';
// @ts-ignore
import SmartInput from 'react-phone-number-input/smart-input';
import PhoneInput from 'react-phone-number-input';
import 'react-phone-number-input/style.css';

const CustomInput = (props: any): JSX.Element => {
  const {inputRef, ...restProps} = props;

  return (
    // @ts-ignore
    <PhoneInput inputComponent={SmartInput} ref={inputRef} {...restProps} />
  );
};

export default CustomInput;
