Skip to content

RtkMuteAllConfirmation

Last updated View as MarkdownAgent setup

Properties

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

Usage Examples

Basic Usage

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

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

With Properties

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

function MyComponent() {
  return (
    <RtkMuteAllConfirmation
      meeting={meeting}
    />
  );
}

Was this helpful?