Skip to content
Cloudflare Docs

RtkParticipantCount

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

Properties

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

Usage Examples

Basic Usage

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

With Properties

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