@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
13 lines (10 loc) • 463 B
TypeScript
import { CountryDetails } from './InputPhone.types.js';
import 'libphonenumber-js';
import 'react';
import '../Select/Select.types.js';
import '@radix-ui/react-select';
declare const GROUP_NAME = "input-phone";
declare const DEFAULT_COUNTRY_CODE = "FR";
declare const countryByCountryCode: Record<string, CountryDetails>;
declare const supportedCountries: CountryDetails[];
export { DEFAULT_COUNTRY_CODE, GROUP_NAME, countryByCountryCode, supportedCountries };