commit 64368209eb037ea02f2dce0a246626912a557b12
parent 5ed6fcff76bd3c6edb4ef5a9fd7ceba2df38e42d
Author: Iván Ávalos <avalos@disroot.org>
Date: Tue, 10 Mar 2026 11:15:03 +0100
[wallet] change icon on warning labels
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/wallet/src/main/java/net/taler/wallet/compose/WarningLabel.kt b/wallet/src/main/java/net/taler/wallet/compose/WarningLabel.kt
@@ -22,7 +22,7 @@ import androidx.compose.foundation.border
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.padding
import androidx.compose.material.icons.Icons
-import androidx.compose.material.icons.outlined.Warning
+import androidx.compose.material.icons.outlined.WarningAmber
import androidx.compose.material3.Icon
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
@@ -45,7 +45,7 @@ fun WarningLabel(
verticalAlignment = Alignment.CenterVertically,
) {
Icon(
- Icons.Outlined.Warning,
+ Icons.Outlined.WarningAmber,
contentDescription = null,
modifier = Modifier.padding(end = 10.dp),
tint = colorResource(R.color.notice_text),