agent-ui/src/components/chat/ChatArea/Messages/AgentThinkingLoader.tsx
Tiago Ribeiro 8a58e13db8
Some checks are pending
Validate Build / validate (push) Waiting to run
chore: add docker deployment for coolify
2026-03-04 18:50:49 -03:00

9 lines
491 B
TypeScript

const AgentThinkingLoader = () => (
<div className="flex items-center justify-center gap-1">
<div className="size-2 animate-bounce rounded-full bg-primary/20 [animation-delay:-0.3s] [animation-duration:0.70s]" />
<div className="size-2 animate-bounce rounded-full bg-primary/20 [animation-delay:-0.10s] [animation-duration:0.70s]" />
<div className="size-2 animate-bounce rounded-full bg-primary/20 [animation-duration:0.70s]" />
</div>
)
export default AgentThinkingLoader