Updated on 2026-08-14

This commit is contained in:
Tangem 2025-10-30 01:41:23 +07:00
parent 690f6689dc
commit 202aa790c4
17 changed files with 171 additions and 51 deletions

View file

@ -31,6 +31,7 @@ fun AccountTitle(
modifier: Modifier = Modifier,
textStyle: TextStyle = TangemTheme.typography.subtitle2,
textColor: Color = TangemTheme.colors.text.tertiary,
iconSize: AccountIconSize = AccountIconSize.ExtraSmall,
) {
Row(
verticalAlignment = Alignment.CenterVertically,
@ -47,7 +48,7 @@ fun AccountTitle(
AccountLabel(
name = accountTitleUM.name,
icon = accountTitleUM.icon,
iconSize = AccountIconSize.ExtraSmall,
iconSize = iconSize,
nameStyle = textStyle,
nameColor = textColor,
)