Skip to content

Commit

Permalink
PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
norda-gunni committed Nov 5, 2024
1 parent 6cf3a36 commit e805bcc
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions libs/island-ui/core/src/lib/PhoneInput/countryCodes.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
export const countryCodesEN = [
interface CountryCode {
name: string
flag: string
code: string
dial_code: string
format?: string
}

export const countryCodesEN: CountryCode[] = [
{ name: 'Afghanistan', flag: '🇦🇫', code: 'AF', dial_code: '+93' },
{
name: 'Åland Islands',
Expand Down Expand Up @@ -635,7 +643,7 @@ export const countryCodesEN = [
{ name: 'Zimbabwe', flag: '🇿🇼', code: 'ZW', dial_code: '+263' },
]

export const countryCodesIS = [
export const countryCodesIS: CountryCode[] = [
{ name: 'Afganistan', flag: '🇦🇫', code: 'AF', dial_code: '+93' },
{ name: 'Albanía', flag: '🇦🇱', code: 'AL', dial_code: '+355' },
{ name: 'Alsír', flag: '🇩🇿', code: 'DZ', dial_code: '+213' },
Expand Down

0 comments on commit e805bcc

Please sign in to comment.