import React from "react"; import BasePhoneInput, { Props as PhoneInputProps } from "react-phone-number-input"; import "react-phone-number-input/style.css"; import classNames from "@lib/classNames"; import { Optional } from "@lib/types/utils"; export const PhoneInput = ( props: Optional>, "onChange"> ) => ( { /* DO NOT REMOVE: Callback required by PhoneInput, comment added to satisfy eslint:no-empty-function */ }} /> ); export default PhoneInput;