Skip to content

rtk-controlbar

Last updated View as MarkdownAgent setup

Controlbar component provides you with various designs as variants.

Properties

Property Type Required Default Description
config UIConfig1 createDefaultConfig() Config
disableRender boolean - Whether to render the default UI
iconPack IconPack1 defaultIconPack Icon Pack
meeting Meeting - Meeting
size Size - Size
states States - States
t RtkI18n useLanguage() Language
variant 'solid' | 'boxed' - Variant

Usage Examples

Basic Usage

<!-- component.html -->
<rtk-controlbar></rtk-controlbar>

With Properties

<!-- component.html -->
<rtk-controlbar
 [disableRender]="true"
 [meeting]="meeting"
 size="md">
</rtk-controlbar>

Was this helpful?