import BasePhoneInput, { Props } from "react-phone-number-input"; import "react-phone-number-input/style.css"; export type PhoneInputProps = Props<{ value: string; id?: string; placeholder?: string; required?: boolean; className?: string; name?: string; }>; function PhoneInput({ name, className, onChange, ...rest }: PhoneInputProps) { return ( ); } export default PhoneInput;