Skip to content

Commit

Permalink
♻️ Figma font style is now set in the information row.
Browse files Browse the repository at this point in the history
  • Loading branch information
Corvus400 committed Sep 11, 2023
1 parent 1d4be44 commit 974fff1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app-ios/Modules/Sources/Component/InformationRow.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ public struct InformationRow: View {
icon
HStack(spacing: 12) {
Text(title)
.font(Font.custom(FontAssets.Montserrat.semiBold, size: 14))
.textStyle(TypographyTokens.labelLarge)
HStack {
Text(content)
.font(Font.custom(FontAssets.Montserrat.semiBold, size: 14))
.textStyle(TypographyTokens.bodyMedium)
if let action = action {
Button {
action.action()
} label: {
Text(action.label)
.font(Font.custom(FontAssets.Montserrat.semiBold, size: 14))
.textStyle(TypographyTokens.bodyMedium)
.underline()
.foregroundStyle(
AssetColors.Primary.primary.swiftUIColor
Expand Down

0 comments on commit 974fff1

Please sign in to comment.