Skip to content

Commit 8a7c8f6

Browse files
committed
fix: send sheet icon tint
1 parent 154f92c commit 8a7c8f6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

app/src/main/java/to/bitkit/ui/screens/wallets/send/SendRecipientScreen.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ fun SendRecipientScreen(
262262
RectangleButton(
263263
label = stringResource(R.string.wallet__recipient_contact),
264264
icon = R.drawable.ic_users,
265+
iconTint = Colors.Brand,
265266
modifier = Modifier.testTag("RecipientContact")
266267
) {
267268
scope.launch {
@@ -272,6 +273,7 @@ fun SendRecipientScreen(
272273
RectangleButton(
273274
label = stringResource(R.string.wallet__recipient_invoice),
274275
icon = R.drawable.ic_clipboard_text,
276+
iconTint = Colors.Brand,
275277
modifier = Modifier.testTag("RecipientInvoice")
276278
) {
277279
onEvent(SendEvent.Paste)
@@ -280,6 +282,7 @@ fun SendRecipientScreen(
280282
RectangleButton(
281283
label = stringResource(R.string.wallet__recipient_manual),
282284
icon = R.drawable.ic_pencil_simple,
285+
iconTint = Colors.Brand,
283286
modifier = Modifier.testTag("RecipientManual")
284287
) {
285288
onEvent(SendEvent.EnterManually)

0 commit comments

Comments
 (0)