diff --git a/examples/Info/Program.cs b/examples/Info/Program.cs index a478a6b..ab6cdd8 100644 --- a/examples/Info/Program.cs +++ b/examples/Info/Program.cs @@ -20,6 +20,8 @@ namespace Info .SetHeader("Information")); } - private static string GetEmoji(bool value) => value ? ":check_mark_button:" : ":cross_mark:"; + private static string GetEmoji(bool value) => value + ? ":thumbs_up:" + : ":thumbs_down:"; } }