Skip to content

RtkRecordingIndicator

Last updated View as MarkdownAgent setup

Displays a blinking recording indicator when the meeting is being recorded.

Properties

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

Usage Examples

Basic Usage

import { RtkRecordingIndicator } from "@cloudflare/realtimekit-react-native-ui";

function MyComponent() {
	return <RtkRecordingIndicator meeting={meeting} />;
}

With Properties

import { RtkRecordingIndicator } from "@cloudflare/realtimekit-react-native-ui";

function MyComponent() {
	return <RtkRecordingIndicator meeting={meeting} size="md" />;
}

Was this helpful?