Skip to content

rtk-participants-toggle

Last updated View as MarkdownAgent setup

A button which toggles visibility of participants. When clicked it emits a rtkStateUpdate event with the data:

{ activeSidebar: boolean; sidebar: 'participants' }

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
variant ControlBarVariant - Variant

Usage Examples

Basic Usage

<!-- component.html -->
<rtk-participants-toggle></rtk-participants-toggle>

With Properties

<!-- component.html -->
<rtk-participants-toggle
 [meeting]="meeting"
 size="md"
 variant="button">
</rtk-participants-toggle>

Was this helpful?