Skip to content

rtk-notifications

Last updated View as Markdown Agent setup

A component which handles notifications. You can configure which notifications you want to see and which ones you want to hear. There are also certain limits which you can set as well.

Properties

Property Type Required Default Description
config UIConfig createDefaultConfig() Config object
iconPack IconPack defaultIconPack Icon pack
meeting Meeting - Meeting object
size Size - Size
states States - States object
t RtkI18n useLanguage() Language

Usage Examples

Basic Usage

<rtk-notifications></rtk-notifications>

With Properties

<rtk-notifications
 size="md">
</rtk-notifications>
<script>
  const el = document.querySelector("rtk-notifications");

  el.meeting= meeting
</script>

Was this helpful?