← Cloudflare Realtime / realtime / realtimekit / ui-kit / api-reference / angular
rtk-settings-audio
A component which lets to manage your audio devices and audio preferences.
Emits rtkStateUpdate event with data for muting notification sounds:
{
prefs: {
muteNotificationSounds: boolean
}
}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 |
Usage Examples
Basic Usage
<!-- component.html -->
<rtk-settings-audio></rtk-settings-audio>With Properties
<!-- component.html -->
<rtk-settings-audio
[meeting]="meeting"
size="md">
</rtk-settings-audio>