| Property | Type | Required | Default | Description |
|---|---|---|---|---|
config |
UIConfig1 |
✅ | - | Config |
hideSelf |
boolean |
✅ | - | Whether to hide self in the grid |
iconPack |
IconPack1 |
❌ | defaultIconPack |
Icon Pack |
meeting |
Meeting |
✅ | - | Meeting |
size |
Size1 |
✅ | - | Size |
states |
States1 |
✅ | - | States |
t |
RtkI18n1 |
❌ | useLanguage() |
Language |
import { RtkAudioGrid } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkAudioGrid />;
}import { RtkAudioGrid } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkAudioGrid
config={defaultUiConfig}
hideSelf={true}
meeting={meeting}
/>
);
}