9 lines
491 B
TypeScript
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
|