← Cloudflare Realtime / realtime / realtimekit / ui-kit / api-reference / angular
rtk-notifications
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
<!-- component.html -->
<rtk-notifications></rtk-notifications>With Properties
<!-- component.html -->
<rtk-notifications
[meeting]="meeting"
size="md">
</rtk-notifications>