Skip to content
Cloudflare Docs

RtkRecordingIndicator

A component which indicates the recording status of a meeting. It will not render anything if no recording is taking place.

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPackdefaultIconPackIcon pack
meetingMeeting-Meeting object
sizeSize-Size
tRtkI18nuseLanguage()Language

Usage Examples

Basic Usage

import { RtkRecordingIndicator } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkRecordingIndicator />;
}

With Properties

import { RtkRecordingIndicator } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkRecordingIndicator
meeting={meeting}
size="md"
/>
);
}