Updated on 2026-08-14

This commit is contained in:
Tangem 2026-05-27 19:01:12 +04:00
parent e3d2e7f2e1
commit 4fbb427a1d
16 changed files with 367 additions and 125 deletions

View file

@ -20,4 +20,14 @@ fun DividerWithPadding(start: Dp = 0.dp, end: Dp = 0.dp, top: Dp = 0.dp, bottom:
thickness = TangemTheme.dimens.size1,
color = TangemTheme.colors.stroke.primary,
)
}
@Composable
fun DividerWithPadding(horizontal: Dp = 0.dp, vertical: Dp = 0.dp) {
DividerWithPadding(
start = horizontal,
end = horizontal,
top = vertical,
bottom = vertical,
)
}