Is there a way to render an icon or empty selector if a pre-existing value exists in React-Phone-Input-2 https://www.npmjs.com/package/react-phone-input-2?
<PhoneNumberInputField
countryCodeEditable={ false }
country={ defaultCountry() }
value={ value }
specialLabel={ translate('profile:profile.phone') }
onChange={ (phoneNumber, data) => handlePhoneChange(phoneNumber, data) }
/>
Right now the first country flag si render in the selector: 
And I want something like this if the value exists and no country code is selected: 
Thank you!