Updated on 2026-08-14

This commit is contained in:
Tangem 2024-07-18 20:53:39 +05:00
parent b0d9d81348
commit 63a8133bd7
3 changed files with 14 additions and 1 deletions

View file

@ -2,6 +2,7 @@ package com.tangem.core.ui.components.showcase
import androidx.annotation.DrawableRes
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.material3.Icon
import androidx.compose.material3.Text
@ -24,7 +25,9 @@ internal fun ShowcaseItem(@DrawableRes iconRes: Int, text: TextReference) {
text = text.resolveReference(),
style = TangemTheme.typography.body2,
color = TangemTheme.colors.text.secondary,
modifier = Modifier.padding(start = TangemTheme.dimens.spacing20),
modifier = Modifier
.fillMaxWidth()
.padding(start = TangemTheme.dimens.spacing20),
)
}
}