Updated on 2026-08-14

This commit is contained in:
Tangem 2026-03-12 16:34:54 +05:00
parent 79aaeaf74f
commit 0143202dde
10 changed files with 209 additions and 122 deletions

View file

@ -82,7 +82,7 @@ internal fun ButtonsStory(modifier: Modifier = Modifier) {
}
item("accent") {
ButtonSection(title = "Accent") { state, text, shape ->
AccentTangemButton(
StatusTangemButton(
onClick = {},
text = if (text) stringReference("Continue") else null,
iconRes = R.drawable.ic_tangem_24,
@ -92,6 +92,19 @@ internal fun ButtonsStory(modifier: Modifier = Modifier) {
)
}
}
item("positive") {
ButtonSection(title = "Positive") { state, text, shape ->
StatusTangemButton(
onClick = {},
text = if (text) stringReference("Continue") else null,
iconRes = R.drawable.ic_tangem_24,
size = TangemButtonSize.X10,
type = TangemButtonType.Positive,
state = state,
shape = shape,
)
}
}
item("ghost") {
ButtonSection(title = "Ghost") { state, text, shape ->
GhostTangemButton(