File size: 491 Bytes
a8aec61 |
1 2 3 4 5 6 7 8 9 10 |
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
|