Skip to content

RtkParticipantCount

Last updated View as MarkdownAgent setup

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

Properties

Property Type Required Default Description
iconPack IconPack defaultIconPack Icon pack
meeting Meeting - Meeting object
size Size - Size
t RtkI18n useLanguage() 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"
    />
  );
}

Was this helpful?