| 124 | |
| 125 | /** Pulsing shimmer bar — web replacement for GlimmerMessage / ShimmerChar. */ |
| 126 | export function ShimmerBar({ className }: { className?: string }) { |
| 127 | return ( |
| 128 | <div |
| 129 | className={cn( |
| 130 | "h-2 rounded-full bg-gradient-to-r from-surface-700 via-surface-500 to-surface-700", |
| 131 | "bg-[length:200%_100%] animate-shimmer", |
| 132 | className |
| 133 | )} |
| 134 | aria-hidden |
| 135 | /> |
| 136 | ); |
| 137 | } |
| 138 | |
| 139 | /** Inline flashing cursor dot — web replacement for FlashingChar. */ |
| 140 | export function FlashingCursor({ className }: { className?: string }) { |