RtkParticipantsViewerList
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
config | UIConfig1 | ❌ | createDefaultConfig() | Config |
hideHeader | boolean | ✅ | - | Hide Viewer Count Header |
iconPack | IconPack1 | ❌ | defaultIconPack | Icon pack |
meeting | Meeting | ✅ | - | Meeting object |
search | string | ✅ | - | Search |
size | Size1 | ✅ | - | Size |
t | RtkI18n1 | ❌ | useLanguage() | Language |
view | ParticipantsViewMode | ✅ | - | View mode for participants list |
import { RtkParticipantsViewerList } from '@cloudflare/realtimekit-react-ui';
function MyComponent() { return <RtkParticipantsViewerList />;}import { RtkParticipantsViewerList } from '@cloudflare/realtimekit-react-ui';
function MyComponent() { return ( <RtkParticipantsViewerList hideHeader={true} meeting={meeting} search="example" /> );}