Displays a blinking recording indicator when the meeting is being recorded.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | The RealtimeKit meeting instance |
iconPack |
IconPack |
❌ | defaultIconPack |
Custom icon pack |
size |
'lg' | 'md' | 'sm' | 'xl' |
❌ | 'sm' |
Size variant |
t |
RtkI18n |
❌ | - | i18n translation function |
import { RtkRecordingIndicator } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkRecordingIndicator meeting={meeting} />;
}import { RtkRecordingIndicator } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkRecordingIndicator meeting={meeting} size="md" />;
}