Skip to content

rtk-notification

A component which shows a notification. You need to remove the element after you receive the rtkNotificationDismiss event.

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPack❌defaultIconPackIcon pack
notificationNotification✅-Message
pausedboolean✅-Stops timeout when true
sizeSize✅-Size
tRtkI18n❌useLanguage()Language

Usage Examples

Basic Usage

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

With Properties

<!-- component.html -->
<rtk-notification
[notification]="notification"
[paused]="true"
size="md">
</rtk-notification>