Phone Input
An international phone number input with country selection.
Configuring your account...
Please wait while we prepare everything for you
Usage
'use client';
import * as React from 'react';
import { PhoneInput } from '@/components/ui/base-phone-input';
export default function BasePhoneInputDefault() {
return (
<div className="w-full max-w-xs">
<PhoneInput placeholder="Enter phone number" popupClassName="w-xs" scrollAreaClassName="h-[300px]" />
</div>
);
}