/** * External dependencies */ import { useMemo } from '@wordpress/element'; import { decodeEntities } from '@wordpress/html-entities'; import clsx from 'clsx'; /** * Internal dependencies */ import './style.scss'; import type { CountryInputWithCountriesProps } from './CountryInputProps'; import { Select, SelectOption } from '../select'; export const CountryInput = ( { className, countries, id, label, onChange, value = '', autoComplete = 'off', required = false, }: CountryInputWithCountriesProps ): JSX.Element => { const options = useMemo< SelectOption[] >( () => { return Object.entries( countries ).map( ( [ countryCode, countryName ] ) => ( { value: countryCode, label: decodeEntities( countryName ), } ) ); }, [ countries ] ); return (