Skip to content

Instantly share code, notes, and snippets.

View FatahChan's full-sized avatar

FatahChan FatahChan

View GitHub Profile
@FatahChan
FatahChan / antd-phone-input.tsx
Created October 7, 2025 07:29
ant design phone number input
import React, { forwardRef, useCallback, useMemo, useState } from 'react';
import type { GetProps, GetRef, InputProps } from 'antd';
import { Input, Select } from 'antd';
import type { CountryIso2 } from 'react-international-phone';
import {
defaultCountries,
FlagImage,
parseCountry,
usePhoneInput,
} from 'react-international-phone';