From 16a730e82a47bcd0e04689e8b209c7c9151a1379 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Tue, 11 Jan 2022 20:12:07 -0800 Subject: [PATCH] Icon Updates --- MeshtasticClient/Views/Settings/MeshLog.swift | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/MeshtasticClient/Views/Settings/MeshLog.swift b/MeshtasticClient/Views/Settings/MeshLog.swift index e69f3475..4bb8251a 100644 --- a/MeshtasticClient/Views/Settings/MeshLog.swift +++ b/MeshtasticClient/Views/Settings/MeshLog.swift @@ -56,10 +56,12 @@ struct MeshLog: View { } }) { - Image(systemName: "trash").imageScale(.large).foregroundColor(.gray) + Image(systemName: "trash.circle.fill") + .symbolRenderingMode(.hierarchical) + .imageScale(.large).foregroundColor(.accentColor) Text("Clear Log").font(.caption) .font(.caption) - .foregroundColor(.gray) + .foregroundColor(.accentColor) } .padding() .background(Color(.systemGray6)) @@ -70,10 +72,12 @@ struct MeshLog: View { Button(action: { isExporting = true }) { - Image(systemName: "arrow.down.circle.fill").imageScale(.large).foregroundColor(.gray) + Image(systemName: "arrow.down.circle.fill") + .symbolRenderingMode(.hierarchical) + .imageScale(.large).foregroundColor(.accentColor) Text("Download Log") .font(.caption) - .foregroundColor(.gray) + .foregroundColor(.accentColor) } .padding() .background(Color(.systemGray6))