We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e01b57 commit 2b3c4eaCopy full SHA for 2b3c4ea
src/components/AITypingIndicatorView/AITypingIndicatorView.tsx
@@ -30,10 +30,8 @@ export const AITypingIndicatorView = <
30
};
31
32
return aiState in allowedStates ? (
33
- <div style={{ backgroundColor: 'gainsboro', padding: '0px 8px' }}>
34
- <p style={{ color: 'black' }}>{allowedStates[aiState]}</p>
+ <div className='str-chat__ai-typing-indicator-container'>
+ <p className='str-chat__ai-typing-indicator-text'>{allowedStates[aiState]}</p>
35
</div>
36
) : null;
37
38
-
39
-AITypingIndicatorView.displayName = 'AITypingIndicatorView{messageSimple{content}}';
0 commit comments