2
0
Files
bot/packages/js/src/components/bubbles/TypingBubble.tsx

8 lines
238 B
TypeScript
Raw Normal View History

export const TypingBubble = () => (
<div class="flex items-center">
<div class="w-2 h-2 mr-1 rounded-full bubble1" />
<div class="w-2 h-2 mr-1 rounded-full bubble2" />
<div class="w-2 h-2 rounded-full bubble3" />
</div>
)