Function
FlashingCursor
({ className }: { className?: string })
Source from the content-addressed store, hash-verified
| 138 | |
| 139 | /** Inline flashing cursor dot — web replacement for FlashingChar. */ |
| 140 | export 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
Tested by
no test coverage detected