/* eslint-disable @typescript-eslint/no-explicit-any */ import React from "react"; import InternationalPhoneInput from "./InternationalPhoneInput"; interface Props { label: string; required?: boolean; value?: string; onChange?: (val: string) => void; country?: string; error?: any; } const NotchedPhoneField: React.FC = ({ label, required, value, onChange, country, error, }) => { return ( <>
{error &&
{error}
}
); }; export default NotchedPhoneField;