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

Function FlashingCursor

web/components/adapted/Spinner.tsx:140–151  ·  view source on GitHub ↗
({ className }: { className?: string })

Source from the content-addressed store, hash-verified

138
139/** Inline flashing cursor dot — web replacement for FlashingChar. */
140export function FlashingCursor({ className }: { className?: string }) {
141 return (
142 <span
143 className={cn(
144 "inline-block w-1.5 h-4 bg-current align-text-bottom ml-0.5",
145 "animate-pulse-soft",
146 className
147 )}
148 aria-hidden
149 />
150 );
151}

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected