Skip to content

RtkNetworkIndicator

Last updated View as MarkdownAgent setup

Properties

Property Type Required Default Description
iconPack IconPack1 defaultIconPack Icon pack
isScreenShare boolean - Is for screenshare
meeting Meeting - Meeting
participant Peer - Participant or Self
t RtkI18n1 useLanguage() Language

Usage Examples

Basic Usage

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

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

With Properties

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

function MyComponent() {
  return (
    <RtkNetworkIndicator
      isScreenShare={true}
      meeting={meeting}
      participant={participant}
    />
  );
}

Was this helpful?