mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-20 16:38:21 +01:00
22 lines
355 B
Markdown
22 lines
355 B
Markdown
#### Number, name and profile
|
|
|
|
```jsx
|
|
<ContactName
|
|
name="Someone 🔥 Somewhere"
|
|
phoneNumber="(202) 555-0011"
|
|
profileName="🔥Flames🔥"
|
|
/>
|
|
```
|
|
|
|
#### Number and profile, no name
|
|
|
|
```jsx
|
|
<ContactName phoneNumber="(202) 555-0011" profileName="🔥Flames🔥" />
|
|
```
|
|
|
|
#### No name, no profile
|
|
|
|
```jsx
|
|
<ContactName phoneNumber="(202) 555-0011" />
|
|
```
|