A component which lets to manage your camera devices and your video preferences.
Emits rtkStateUpdate event with data for toggling mirroring of self video:
{
prefs: {
mirrorVideo: boolean
}
}| Property | Type | Required | Default | Description |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
Icon pack |
meeting |
Meeting |
✅ | - | Meeting object |
size |
Size |
✅ | - | Size |
states |
States |
✅ | - | States object |
t |
RtkI18n |
❌ | useLanguage() |
Language |
import { RtkSettingsVideo } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkSettingsVideo />;
}import { RtkSettingsVideo } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkSettingsVideo
meeting={meeting}
size="md"
/>
);
}