commit b99e9b9accabae4271cf68bc72e79c33f8134e03 parent 61974ca6967904a2d8f316bf55c555691e6cf854 Author: William Casarin <jb55@jb55.com> Date: Tue, 3 Jan 2023 11:15:10 -0800 use muted shaka in EventActionBar Diffstat:
M | damus/Views/EventActionBar.swift | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/damus/Views/EventActionBar.swift b/damus/Views/EventActionBar.swift @@ -156,9 +156,9 @@ struct LikeButton: View { if liked { Text("🤙") } else { - Label(" ", systemImage: "hand.thumbsup") - .font(.footnote.weight(.medium)) - .foregroundColor(Color.gray) + Image("shaka") + .renderingMode(.template) + .foregroundColor(.gray) } } }