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.
		
		
		
		
		
			
		
			
	
	
		
			39 lines
		
	
	
		
			793 B
		
	
	
	
		
			Markdown
		
	
		
		
			
		
	
	
			39 lines
		
	
	
		
			793 B
		
	
	
	
		
			Markdown
		
	
| 
											7 years ago
										 | ### In message bubble
 | ||
|  | 
 | ||
|  | ```jsx | ||
|  | <util.ConversationContext theme={util.theme}> | ||
|  |   <li> | ||
|  |     <TypingBubble conversationType="direct" i18n={util.i18n} /> | ||
|  |   </li> | ||
|  |   <li> | ||
|  |     <TypingBubble color="teal" conversationType="direct" i18n={util.i18n} /> | ||
|  |   </li> | ||
|  | </util.ConversationContext> | ||
|  | ``` | ||
|  | 
 | ||
|  | ### In message bubble, group conversation
 | ||
|  | 
 | ||
|  | ```jsx | ||
|  | <util.ConversationContext theme={util.theme}> | ||
|  |   <li> | ||
|  |     <TypingBubble color="red" conversationType="group" i18n={util.i18n} /> | ||
|  |   </li> | ||
|  |   <li> | ||
|  |     <TypingBubble | ||
|  |       color="purple" | ||
|  |       authorName="First Last" | ||
|  |       conversationType="group" | ||
|  |       i18n={util.i18n} | ||
|  |     /> | ||
|  |   </li> | ||
|  |   <li> | ||
|  |     <TypingBubble | ||
|  |       avatarPath={util.gifObjectUrl} | ||
|  |       color="blue" | ||
|  |       conversationType="group" | ||
|  |       i18n={util.i18n} | ||
|  |     /> | ||
|  |   </li> | ||
|  | </util.ConversationContext> | ||
|  | ``` |