Skip to content

Commit ab73920

Browse files
committed
Update UndoSidebarView.swift
1 parent 5cf9bac commit ab73920

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

GoInfoGame/GoInfoGame/UI/Utils/UndoSidebarView.swift

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,17 @@ struct UndoSidebarView: View {
1919
var body: some View {
2020
VStack(alignment: .leading, spacing: 12) {
2121
HStack {
22-
Text("🔄 Undo Edits")
22+
Image(systemName: "arrow.uturn.backward.circle.fill")
23+
.font(.title)
24+
25+
Text("Undo Edits")
2326
.font(.headline)
2427
Spacer()
2528
Button(action: onClose) {
2629
Image(systemName: "xmark.circle.fill")
27-
.foregroundColor(.gray)
2830
}
2931
}
32+
.foregroundColor(Asset.Colors.huskyPurple.swiftUIColor)
3033

3134
ScrollView {
3235
ForEach(undoItems) { item in

0 commit comments

Comments
 (0)