import React from 'react'; import classnames from 'classnames'; import PhoneInput from 'react-phone-number-input'; import './styles.module.scss'; const PhoneInputBox: React.FC = ({ value = undefined, onChange = () => null, country = 'US', ...props }) => { return ; } export default PhoneInputBox;