We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 819ddea commit c55cf58Copy full SHA for c55cf58
WooCommerce/Classes/POS/Presentation/Reusable Views/POSErrorExclamationMark.swift
@@ -10,7 +10,10 @@ struct POSErrorExclamationMark: View {
10
11
var body: some View {
12
Image(systemName: "exclamationmark.circle.fill")
13
- .font(.system(size: size))
+ .resizable()
14
+ .aspectRatio(contentMode: .fit)
15
+ .frame(maxHeight: size)
16
+ .layoutPriority(-1)
17
.foregroundStyle(Color.posAlert)
18
.accessibilityHidden(true)
19
.renderedIf(!dynamicTypeSize.isAccessibilitySize)
0 commit comments