|
@@ -23,13 +23,6 @@ const DEFAULT_COUNTRY = {
|
23
|
23
|
name: 'United States'
|
24
|
24
|
};
|
25
|
25
|
|
26
|
|
-/**
|
27
|
|
- * The expand icon of the dropdown menu.
|
28
|
|
- *
|
29
|
|
- * @type {ReactElement}
|
30
|
|
- */
|
31
|
|
-const EXPAND_ICON = <ExpandIcon label = 'expand' />;
|
32
|
|
-
|
33
|
26
|
/**
|
34
|
27
|
* React {@code Component} responsible for fetching and displaying dial-out
|
35
|
28
|
* country codes, as well as dialing a phone number.
|
|
@@ -208,7 +201,9 @@ class DialOutNumbersForm extends Component {
|
208
|
201
|
type = 'text'
|
209
|
202
|
value = { dialCode || '' } />
|
210
|
203
|
<span className = 'dropdown-trigger-icon'>
|
211
|
|
- { EXPAND_ICON }
|
|
204
|
+ <ExpandIcon
|
|
205
|
+ label = 'expand'
|
|
206
|
+ size = 'medium' />
|
212
|
207
|
</span>
|
213
|
208
|
</div>
|
214
|
209
|
);
|