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 5cf9bac commit ab73920Copy full SHA for ab73920
GoInfoGame/GoInfoGame/UI/Utils/UndoSidebarView.swift
@@ -19,14 +19,17 @@ struct UndoSidebarView: View {
19
var body: some View {
20
VStack(alignment: .leading, spacing: 12) {
21
HStack {
22
- Text("🔄 Undo Edits")
+ Image(systemName: "arrow.uturn.backward.circle.fill")
23
+ .font(.title)
24
+
25
+ Text("Undo Edits")
26
.font(.headline)
27
Spacer()
28
Button(action: onClose) {
29
Image(systemName: "xmark.circle.fill")
- .foregroundColor(.gray)
30
}
31
32
+ .foregroundColor(Asset.Colors.huskyPurple.swiftUIColor)
33
34
ScrollView {
35
ForEach(undoItems) { item in
0 commit comments