From 1d4be4404573eae5edc7d6c722c299bdf4d68529 Mon Sep 17 00:00:00 2001 From: todayama_r <13657682+Corvus400@users.noreply.github.com> Date: Mon, 11 Sep 2023 23:10:42 +0900 Subject: [PATCH] :recycle: Figma font style is now set in the time table item detail person label. --- app-ios/Modules/Sources/Component/PersonLabel.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-ios/Modules/Sources/Component/PersonLabel.swift b/app-ios/Modules/Sources/Component/PersonLabel.swift index fcc4b8f2c..87e1d541d 100644 --- a/app-ios/Modules/Sources/Component/PersonLabel.swift +++ b/app-ios/Modules/Sources/Component/PersonLabel.swift @@ -31,13 +31,13 @@ public struct PersonLabel: View { VStack(alignment: .leading) { Text(name) + .textStyle(TypographyTokens.bodyLarge) .foregroundStyle(AssetColors.Surface.onSurface.swiftUIColor) - .font(Font.custom(FontAssets.Montserrat.medium, size: 16)) .lineLimit(2) if let notes = notes { Text(notes) + .textStyle(TypographyTokens.bodySmall) .foregroundStyle(AssetColors.Surface.onSurfaceVariant.swiftUIColor) - .font(Font.custom(FontAssets.Montserrat.medium, size: 12)) } } }