36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
export const COUNTRY_OPTIONS = [
|
|
{ value: 'BE', label: 'Belgium' },
|
|
{ value: 'NL', label: 'Netherlands' },
|
|
{ value: 'DE', label: 'Germany' },
|
|
{ value: 'FR', label: 'France' },
|
|
{ value: 'AT', label: 'Austria' },
|
|
{ value: 'IT', label: 'Italy' },
|
|
{ value: 'ES', label: 'Spain' },
|
|
{ value: 'PT', label: 'Portugal' },
|
|
{ value: 'IE', label: 'Ireland' },
|
|
{ value: 'LU', label: 'Luxembourg' },
|
|
{ value: 'FI', label: 'Finland' },
|
|
{ value: 'SE', label: 'Sweden' },
|
|
{ value: 'DK', label: 'Denmark' },
|
|
{ value: 'PL', label: 'Poland' },
|
|
{ value: 'CZ', label: 'Czech Republic' },
|
|
{ value: 'RO', label: 'Romania' },
|
|
{ value: 'BG', label: 'Bulgaria' },
|
|
{ value: 'HR', label: 'Croatia' },
|
|
{ value: 'SI', label: 'Slovenia' },
|
|
{ value: 'SK', label: 'Slovakia' },
|
|
{ value: 'HU', label: 'Hungary' },
|
|
{ value: 'LT', label: 'Lithuania' },
|
|
{ value: 'LV', label: 'Latvia' },
|
|
{ value: 'EE', label: 'Estonia' },
|
|
{ value: 'MT', label: 'Malta' },
|
|
{ value: 'CY', label: 'Cyprus' },
|
|
{ value: 'GR', label: 'Greece' },
|
|
{ value: 'US', label: 'United States' },
|
|
{ value: 'GB', label: 'United Kingdom' },
|
|
{ value: 'CH', label: 'Switzerland' },
|
|
{ value: 'NO', label: 'Norway' },
|
|
{ value: 'CA', label: 'Canada' },
|
|
{ value: 'AU', label: 'Australia' },
|
|
] as const
|