()
| 6 | // ─── Animated dots ──────────────────────────────────────────────────────────── |
| 7 | |
| 8 | function Dots() { |
| 9 | return ( |
| 10 | <span className="inline-flex items-end gap-0.5 h-3"> |
| 11 | {[0, 1, 2].map((i) => ( |
| 12 | <motion.span |
| 13 | key={i} |
| 14 | className="w-1 h-1 rounded-full bg-surface-400 inline-block" |
| 15 | animate={{ y: [0, -3, 0] }} |
| 16 | transition={{ |
| 17 | duration: 0.6, |
| 18 | repeat: Infinity, |
| 19 | delay: i * 0.15, |
| 20 | ease: "easeInOut", |
| 21 | }} |
| 22 | /> |
| 23 | ))} |
| 24 | </span> |
| 25 | ); |
| 26 | } |
| 27 | |
| 28 | // ─── TypingIndicator ────────────────────────────────────────────────────────── |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected