import * as React from "react" import PhoneInput from "react-phone-number-input" import { cn } from "@/lib/utils" export interface PhoneInputProps extends React.ComponentProps { className?: string } // eslint-disable-next-line @typescript-eslint/no-explicit-any const PhoneInputComponent = React.forwardRef(({ className, ...props }, ref) => { return ( ) }) PhoneInputComponent.displayName = "PhoneInput" export { PhoneInputComponent as PhoneInput }