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

Function ShimmerBar

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

Source from the content-addressed store, hash-verified

124
125/** Pulsing shimmer bar — web replacement for GlimmerMessage / ShimmerChar. */
126export 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. */
140export function FlashingCursor({ className }: { className?: string }) {

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected