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.
		
		
		
		
		
			
		
			
	
	
		
			46 lines
		
	
	
		
			875 B
		
	
	
	
		
			Markdown
		
	
		
		
			
		
	
	
			46 lines
		
	
	
		
			875 B
		
	
	
	
		
			Markdown
		
	
| 
											8 years ago
										 | #### With name and profile, verified
 | ||
|  | 
 | ||
|  | ```jsx | ||
|  | <div style={{ backgroundColor: 'gray', color: 'white' }}> | ||
|  |   <ConversationTitle | ||
|  |     i18n={util.i18n} | ||
|  |     isVerified | ||
|  |     name="Someone 🔥 Somewhere" | ||
|  |     phoneNumber="+12025550011" | ||
|  |     profileName="🔥Flames🔥" | ||
|  |   /> | ||
|  | </div> | ||
|  | ``` | ||
|  | 
 | ||
|  | #### With name, not verified
 | ||
|  | 
 | ||
|  | ```jsx | ||
|  | <div style={{ backgroundColor: 'gray', color: 'white' }}> | ||
|  |   <ConversationTitle | ||
|  |     i18n={util.i18n} | ||
|  |     name="Someone 🔥 Somewhere" | ||
|  |     phoneNumber="+12025550011" | ||
|  |   /> | ||
|  | </div> | ||
|  | ``` | ||
|  | 
 | ||
|  | #### Profile, no name
 | ||
|  | 
 | ||
|  | ```jsx | ||
|  | <div style={{ backgroundColor: 'gray', color: 'white' }}> | ||
|  |   <ConversationTitle | ||
|  |     i18n={util.i18n} | ||
|  |     phoneNumber="+12025550011" | ||
|  |     profileName="🔥Flames🔥" | ||
|  |   /> | ||
|  | </div> | ||
|  | ``` | ||
|  | 
 | ||
|  | #### No name, no profile
 | ||
|  | 
 | ||
|  | ```jsx | ||
|  | <div style={{ backgroundColor: 'gray', color: 'white' }}> | ||
|  |   <ConversationTitle i18n={util.i18n} phoneNumber="+12025550011" /> | ||
|  | </div> | ||
|  | ``` |