Files
bot/packages/deprecated/bot-engine/src/components/TypingBubble.tsx
2023-03-15 08:35:16 +01:00

10 lines
294 B
TypeScript

import React from 'react'
export const TypingBubble = (): JSX.Element => (
<div className="flex items-center">
<div className="w-2 h-2 mr-1 rounded-full bubble1" />
<div className="w-2 h-2 mr-1 rounded-full bubble2" />
<div className="w-2 h-2 rounded-full bubble3" />
</div>
)