Skip to content
Cloudflare Docs

RtkAudioGrid

Properties

PropertyTypeRequiredDefaultDescription
configUIConfig1-Config
hideSelfboolean-Whether to hide self in the grid
iconPackIconPack1defaultIconPackIcon Pack
meetingMeeting-Meeting
sizeSize1-Size
statesStates1-States
tRtkI18n1useLanguage()Language

Usage Examples

Basic Usage

import { RtkAudioGrid } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkAudioGrid />;
}

With Properties

import { RtkAudioGrid } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkAudioGrid
config={defaultUiConfig}
hideSelf={true}
meeting={meeting}
/>
);
}