Skip to content

rtk-participant-setup

Last updated View as MarkdownAgent setup

Properties

Property Type Required Default Description
config UIConfig createDefaultConfig() Config object
iconPack IconPack defaultIconPack Icon pack
isPreview boolean - Whether tile is used for preview
nameTagPosition | 'bottom-left' | 'bottom-right' | 'bottom-center' | 'top-left' | 'top-right' | 'top-center' - Position of name tag
participant Peer - Participant object
size Size - Size
states States - States object
t RtkI18n useLanguage() Language
variant 'solid' | 'gradient' - Variant

Usage Examples

Basic Usage

<rtk-participant-setup></rtk-participant-setup>

With Properties

<rtk-participant-setup>
</rtk-participant-setup>
<script>
  const el = document.querySelector("rtk-participant-setup");

  el.isPreview= true;
  el.participant= participant
</script>

Was this helpful?