MCPcopy Create free account
hub / github.com/codeaashu/claude-code / Dots

Function Dots

web/components/collaboration/TypingIndicator.tsx:8–26  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6// ─── Animated dots ────────────────────────────────────────────────────────────
7
8function 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected