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
		
	
	
		
			823 B
		
	
	
	
		
			Markdown
		
	
			
		
		
	
	
			39 lines
		
	
	
		
			823 B
		
	
	
	
		
			Markdown
		
	
| ### In message bubble
 | |
| 
 | |
| ```jsx
 | |
| <util.ConversationContext theme={util.theme} ios={util.ios}>
 | |
|   <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} ios={util.ios}>
 | |
|   <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>
 | |
| ```
 |