Agently / web /src /components /chat /ThinkingIndicator.jsx
CI Deploy
Deploy 2026-05-15 14:25 UTC
7949d20
Raw
History Blame Contribute Delete
202 Bytes
export default function ThinkingIndicator({ statusText }) {
return (
<div className="thinking">
<div className="dot"></div>
<span>{statusText || 'Thinking...'}</span>
</div>
)
}