Updated on 2026-08-14
This commit is contained in:
parent
78fab3a9de
commit
25b396f08f
45 changed files with 497 additions and 114 deletions
|
|
@ -102,7 +102,7 @@ fun EmptyTopBarWithNavigation(
|
|||
{
|
||||
IconButton(onClick = onBackClick) {
|
||||
Icon(
|
||||
painter = painterResource(id = R.drawable.ic_back),
|
||||
painter = painterResource(id = R.drawable.ic_back_24),
|
||||
contentDescription = null,
|
||||
tint = TangemTheme.colors.icon.primary1,
|
||||
)
|
||||
|
|
@ -136,6 +136,6 @@ fun DetailsMainButton(
|
|||
) {
|
||||
Text(text = title)
|
||||
Spacer(modifier = modifier.size(8.dp))
|
||||
Icon(painter = painterResource(id = R.drawable.ic_tangem), contentDescription = "")
|
||||
Icon(painter = painterResource(id = R.drawable.ic_tangem_24), contentDescription = "")
|
||||
}
|
||||
}
|
||||
|
|
@ -81,7 +81,7 @@ private fun AddSessionFab(
|
|||
modifier = modifier,
|
||||
) {
|
||||
Icon(
|
||||
painter = painterResource(id = R.drawable.ic_plus),
|
||||
painter = painterResource(id = R.drawable.ic_plus_24),
|
||||
contentDescription = "",
|
||||
)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ private fun Header(
|
|||
) {
|
||||
Icon(
|
||||
modifier = Modifier.size(TangemTheme.dimens.size24),
|
||||
painter = painterResource(id = R.drawable.ic_close),
|
||||
painter = painterResource(id = R.drawable.ic_close_24),
|
||||
tint = TangemTheme.colors.icon.secondary,
|
||||
contentDescription = stringResource(id = R.string.common_cancel),
|
||||
)
|
||||
|
|
|
|||
|
|
@ -201,7 +201,7 @@ private fun Footer(
|
|||
modifier = Modifier.fillMaxWidth(),
|
||||
text = stringResource(R.string.user_wallet_list_add_button),
|
||||
showProgress = showAddCardProgress,
|
||||
icon = painterResource(id = R.drawable.ic_tangem),
|
||||
icon = painterResource(id = R.drawable.ic_tangem_24),
|
||||
onClick = onAddCardClick,
|
||||
)
|
||||
}
|
||||
|
|
@ -230,7 +230,7 @@ private fun EditWalletsBar(
|
|||
) {
|
||||
Icon(
|
||||
modifier = Modifier.size(TangemTheme.dimens.size24),
|
||||
painter = painterResource(id = R.drawable.ic_close),
|
||||
painter = painterResource(id = R.drawable.ic_close_24),
|
||||
tint = TangemTheme.colors.icon.primary1,
|
||||
contentDescription = "Unselect wallets",
|
||||
)
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ internal fun WelcomeScreenContent(
|
|||
.fillMaxWidth(),
|
||||
text = stringResource(R.string.welcome_unlock_card),
|
||||
showProgress = showScanCardProgress,
|
||||
icon = painterResource(id = R.drawable.ic_tangem),
|
||||
icon = painterResource(id = R.drawable.ic_tangem_24),
|
||||
onClick = onScanCardClick,
|
||||
)
|
||||
SpacerH16()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue