21 lines
355 B
Markdown
21 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" />
|
|
```
|