Skip to content

RtkAudioGrid

Last updated View as MarkdownAgent setup

Properties

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

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}
    />
  );
}

Was this helpful?