2018-07-09 21:29:13 +00:00
|
|
|
#### Number, name and profile
|
2018-05-22 22:18:51 +00:00
|
|
|
|
|
|
|
```jsx
|
2018-07-09 21:29:13 +00:00
|
|
|
<ContactName
|
|
|
|
i18n={util.i18n}
|
|
|
|
name="Someone 🔥 Somewhere"
|
|
|
|
phoneNumber="(202) 555-0011"
|
|
|
|
profileName="🔥Flames🔥"
|
|
|
|
/>
|
2018-05-22 22:18:51 +00:00
|
|
|
```
|
|
|
|
|
2018-07-09 21:29:13 +00:00
|
|
|
#### Number and profile, no name
|
2018-05-22 22:18:51 +00:00
|
|
|
|
|
|
|
```jsx
|
2018-07-09 21:29:13 +00:00
|
|
|
<ContactName
|
|
|
|
i18n={util.i18n}
|
|
|
|
phoneNumber="(202) 555-0011"
|
|
|
|
profileName="🔥Flames🔥"
|
|
|
|
/>
|
2018-05-22 22:18:51 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
#### No name, no profile
|
|
|
|
|
|
|
|
```jsx
|
2018-07-09 21:29:13 +00:00
|
|
|
<ContactName i18n={util.i18n} phoneNumber="(202) 555-0011" />
|
2018-05-22 22:18:51 +00:00
|
|
|
```
|