| 属性 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
config |
UIConfig |
✅ | - | 配置 |
iconPack |
IconPack1 |
❌ | defaultIconPack |
图标包 |
meeting |
Meeting |
✅ | - | 会议 |
participant |
Peer |
✅ | - | 参与者对象 |
size |
Size |
✅ | - | 尺寸 |
states |
States1 |
✅ | - | 状态 |
t |
RtkI18n1 |
❌ | useLanguage() |
语言 |
import { RtkAudioTile } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkAudioTile />;
}import { RtkAudioTile } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkAudioTile
config={defaultUiConfig}
meeting={meeting}
participant={participant}
/>
);
}