Updated on 2026-08-14

This commit is contained in:
Tangem 2025-08-26 14:36:55 +05:00
parent 1d97ce5203
commit 220a43c1b9
11 changed files with 86 additions and 28 deletions

View file

@ -62,6 +62,7 @@ fun Notification(
NotificationConfig.IconTint.Unspecified -> null
NotificationConfig.IconTint.Accent -> TangemTheme.colors.icon.accent
NotificationConfig.IconTint.Attention -> TangemTheme.colors.icon.attention
NotificationConfig.IconTint.Warning -> TangemTheme.colors.icon.warning
},
isEnabled: Boolean = true,
) {

View file

@ -65,5 +65,6 @@ data class NotificationConfig(
Unspecified,
Accent,
Attention,
Warning,
}
}