@@ -22,7 +22,7 @@ public extension Font {
22
22
font = font. italic ( )
23
23
} else if isCondensed {
24
24
if #available( iOS 16 . 0 , watchOS 9 . 0 , * ) {
25
- font = font. width ( . condensed)
25
+ font = font. width ( Font . Width . condensed)
26
26
} else {
27
27
font = Font . fioriCondensed ( forTextStyle: fioriTextStyle, weight: weight)
28
28
}
@@ -50,7 +50,7 @@ public extension Font {
50
50
font = font. italic ( )
51
51
} else if isCondensed {
52
52
if #available( iOS 16 . 0 , watchOS 9 . 0 , * ) {
53
- font = font. width ( . condensed)
53
+ font = font. width ( Font . Width . condensed)
54
54
} else {
55
55
font = Font . fioriCondensed ( fixedSize: fixedSize, weight: weight)
56
56
}
@@ -74,7 +74,7 @@ public extension Font {
74
74
} else {
75
75
font = Font . system ( fioriTextStyle. textStyle) . weight ( weight)
76
76
if #available( iOS 16 . 0 , watchOS 9 . 0 , * ) {
77
- font = font. width ( . condensed)
77
+ font = font. width ( Font . Width . condensed)
78
78
}
79
79
}
80
80
@@ -97,7 +97,7 @@ public extension Font {
97
97
} else {
98
98
font = Font . system ( size: fixedSize) . weight ( weight)
99
99
if #available( iOS 16 . 0 , watchOS 9 . 0 , * ) {
100
- font = font. width ( . condensed)
100
+ font = font. width ( Font . Width . condensed)
101
101
}
102
102
}
103
103
0 commit comments