> ## Documentation Index
> Fetch the complete documentation index at: https://docs.renchi.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# TranscriptViewer

> * TranscriptViewer - Searchable transcript with timestamps * Shows the full conversation transcript with: - Speaker identification (Agent vs Customer) - Timestamps for each entry - Search functionality - Highlighted key moments

* TranscriptViewer - Searchable transcript with timestamps \* Shows the full conversation transcript with: - Speaker identification (Agent vs Customer) - Timestamps for each entry - Search functionality - Highlighted key moments

## Props

<ResponseField name="transcript" type="TranscriptEntry[]" required={true}>
  transcript
</ResponseField>

## Usage

```tsx theme={null}
import { TranscriptViewer } from '@/components/TranscriptViewer';

export default function Example() {
  return (
    <TranscriptViewer transcript={transcript} />
  );
}
```
