Updated on 2026-08-14
This commit is contained in:
parent
79aaeaf74f
commit
0143202dde
10 changed files with 209 additions and 122 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue