diff --git a/damus/Views/EventActionBar.swift b/damus/Views/EventActionBar.swift index c25900c9..43ca5b71 100644 --- a/damus/Views/EventActionBar.swift +++ b/damus/Views/EventActionBar.swift @@ -151,13 +151,15 @@ struct LikeButton: View { @Environment(\.colorScheme) var colorScheme - var default_emoji: String { - return colorScheme == .dark ? "🤙🏿" : "🤙🏻" - } - var body: some View { Button(action: action) { - Text(liked ? "🤙" : default_emoji) + if liked { + Text("🤙") + } else { + Label(" ", systemImage: "hand.thumbsup") + .font(.footnote.weight(.medium)) + .foregroundColor(Color.gray) + } } } }