Button to mute all participants' audio. Only visible for hosts with mute-all permissions.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | The RealtimeKit meeting instance |
size |
'lg' | 'md' | 'sm' | 'xl' |
❌ | - | Icon size |
iconPack |
IconPack |
❌ | defaultIconPack |
Custom icon pack |
t |
RtkI18n |
❌ | - | i18n translation function |
import { RtkMuteToggle } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkMuteToggle meeting={meeting} />;
}import { RtkMuteToggle } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkMuteToggle meeting={meeting} size="md" />;
}