Skip to content

Commit 2b3c4ea

Browse files
committed
chore: extract inline css into separate repo
1 parent 5e01b57 commit 2b3c4ea

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/components/AITypingIndicatorView/AITypingIndicatorView.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,8 @@ export const AITypingIndicatorView = <
3030
};
3131

3232
return aiState in allowedStates ? (
33-
<div style={{ backgroundColor: 'gainsboro', padding: '0px 8px' }}>
34-
<p style={{ color: 'black' }}>{allowedStates[aiState]}</p>
33+
<div className='str-chat__ai-typing-indicator-container'>
34+
<p className='str-chat__ai-typing-indicator-text'>{allowedStates[aiState]}</p>
3535
</div>
3636
) : null;
3737
};
38-
39-
AITypingIndicatorView.displayName = 'AITypingIndicatorView{messageSimple{content}}';

0 commit comments

Comments
 (0)