Skip to content
Cloudflare Docs

RtkViewerCount

A component which shows count of total joined participants in a meeting.

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPackdefaultIconPackIcon pack
meetingMeeting-Meeting object
tRtkI18nuseLanguage()Language
variantViewerCountVariant-Viewer count variant

Usage Examples

Basic Usage

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

With Properties

import { RtkViewerCount } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkViewerCount
meeting={meeting}
variant="primary"
/>
);
}