Updated on 2026-08-14

This commit is contained in:
Tangem 2023-09-16 15:47:40 +03:00
parent b2f12e90aa
commit 1bc38864da
6 changed files with 33 additions and 26 deletions

View file

@ -2,7 +2,6 @@ package com.tangem.feature.wallet.presentation.common.component.token
import androidx.compose.animation.AnimatedContent
import androidx.compose.animation.ExperimentalAnimationApi
import androidx.compose.foundation.Image
import androidx.compose.foundation.layout.*
import androidx.compose.material3.Icon
import androidx.compose.material3.Text
@ -87,13 +86,17 @@ private fun PriceChangeIcon(type: PriceChangeConfig.Type, modifier: Modifier = M
label = "Update the price change's arrow",
modifier = modifier,
) {
Image(
Icon(
painter = painterResource(
id = when (it) {
PriceChangeConfig.Type.UP -> R.drawable.img_arrow_up_8
PriceChangeConfig.Type.DOWN -> R.drawable.img_arrow_down_8
PriceChangeConfig.Type.UP -> R.drawable.ic_arrow_up_8
PriceChangeConfig.Type.DOWN -> R.drawable.ic_arrow_down_8
},
),
tint = when (it) {
PriceChangeConfig.Type.UP -> TangemTheme.colors.icon.accent
PriceChangeConfig.Type.DOWN -> TangemTheme.colors.icon.warning
},
contentDescription = null,
)
}