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

Function VoiceIndicator

src/components/PromptInput/VoiceIndicator.tsx:24–38  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

22const PULSE_PERIOD_S = 2; // 2 second period for all pulsing animations
23
24export function VoiceIndicator(props) {
25 const $ = _c(2);
26 if (!feature("VOICE_MODE")) {
27 return null;
28 }
29 let t0;
30 if ($[0] !== props) {
31 t0 = <VoiceIndicatorImpl {...props} />;
32 $[0] = props;
33 $[1] = t0;
34 } else {
35 t0 = $[1];
36 }
37 return t0;
38}
39function VoiceIndicatorImpl(t0) {
40 const $ = _c(2);
41 const {

Callers

nothing calls this directly

Calls 1

featureFunction · 0.85

Tested by

no test coverage detected