Skip to content

RtkRecordingIndicator

Last updated View as MarkdownAgent setup

A component which indicates the recording status of a meeting. It will not render anything if no recording is taking place.

Properties

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

Usage Examples

Basic Usage

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

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

With Properties

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

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

Was this helpful?