一个允许您管理音频设备和音频首选项的组件。触发 rtkStateUpdate 事件,并带有静音通知声音的数据:
{
prefs: {
muteNotificationSounds: boolean
}
}| 属性 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
图标包 |
meeting |
Meeting |
✅ | - | 会议对象 |
size |
Size |
✅ | - | 尺寸 |
t |
RtkI18n |
❌ | useLanguage() |
语言 |
variant |
'full' | 'inline' |
✅ | - | 变体 |
import { RtkCameraSelector } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkCameraSelector />;
}import { RtkCameraSelector } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkCameraSelector
meeting={meeting}
size="md"
variant={'full' | 'inline'}
/>
);
}