| 属性 | 类型 | 是否必填 | 默认值 | 描述 |
|---|---|---|---|---|
iconPack |
IconPack1 |
❌ | defaultIconPack |
图标包 |
isScreenShare |
boolean |
✅ | - | 是否用于屏幕共享 |
meeting |
Meeting |
✅ | - | 会议 |
participant |
Peer |
✅ | - | 参与者或自身 |
t |
RtkI18n1 |
❌ | useLanguage() |
语言 |
import { RtkNetworkIndicator } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkNetworkIndicator />;
}import { RtkNetworkIndicator } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkNetworkIndicator
isScreenShare={true}
meeting={meeting}
participant={participant}
/>
);
}