Skip to content

RtkLivestreamIndicator

Last updated View as MarkdownAgent setup

Properties

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

Usage Examples

Basic Usage

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

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

With Properties

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

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

Was this helpful?