You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			414 B
		
	
	
	
		
			Markdown
		
	
			
		
		
	
	
			27 lines
		
	
	
		
			414 B
		
	
	
	
		
			Markdown
		
	
| #### Number, name and profile
 | |
| 
 | |
| ```jsx
 | |
| <ContactName
 | |
|   i18n={util.i18n}
 | |
|   name="Someone 🔥 Somewhere"
 | |
|   phoneNumber="(202) 555-0011"
 | |
|   profileName="🔥Flames🔥"
 | |
| />
 | |
| ```
 | |
| 
 | |
| #### Number and profile, no name
 | |
| 
 | |
| ```jsx
 | |
| <ContactName
 | |
|   i18n={util.i18n}
 | |
|   phoneNumber="(202) 555-0011"
 | |
|   profileName="🔥Flames🔥"
 | |
| />
 | |
| ```
 | |
| 
 | |
| #### No name, no profile
 | |
| 
 | |
| ```jsx
 | |
| <ContactName i18n={util.i18n} phoneNumber="(202) 555-0011" />
 | |
| ```
 |