RtkViewerCount
A component which shows count of total joined participants in a meeting.
| Property | Type | Required | Default | Description |
|----------|------|----------|---------|-------------|
| iconPack | IconPack | ❌ | defaultIconPack | Icon pack |
| meeting | Meeting | ✅ | - | Meeting object |
| t | RtkI18n | ❌ | useLanguage() | Language |
| variant | ViewerCountVariant | ✅ | - | Viewer count variant |
import { RtkViewerCount } from '@cloudflare/realtimekit-react-ui';
function MyComponent() { return <RtkViewerCount />;}import { RtkViewerCount } from '@cloudflare/realtimekit-react-ui';
function MyComponent() { return ( <RtkViewerCount meeting={meeting} variant="primary" /> );}