RtkParticipant
A participant list item card showing avatar, name, audio/video status icons, and host control options (pin, kick, mute, stage management).
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
participant | Peer | ✅ | - | The participant to display |
meeting | RealtimeKitClient | ❌ | - | The RealtimeKit meeting instance |
iconPack | IconPack | ❌ | defaultIconPack | Custom icon pack |
t | RtkI18n | ❌ | - | i18n translation function |
import { RtkParticipant } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() { return <RtkParticipant participant={participant} />;}import { RtkParticipant } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() { return ( <RtkParticipant participant={participant} meeting={meeting} iconPack={customIconPack} /> );}