Skip to content

RtkSettings

Last updated View as MarkdownAgent setup

A settings component to see and change your audio/video devices as well as see your connection quality.

Properties

Property Type Required Default Description
iconPack IconPack defaultIconPack Icon pack
meeting Meeting - Meeting object
size Size - Size
states States - States object
t RtkI18n useLanguage() Language

Usage Examples

Basic Usage

import { RtkSettings } from '@cloudflare/realtimekit-react-ui';

function MyComponent() {
  return <RtkSettings />;
}

With Properties

import { RtkSettings } from '@cloudflare/realtimekit-react-ui';

function MyComponent() {
  return (
    <RtkSettings
      meeting={meeting}
      size="md"
    />
  );
}

Was this helpful?