15 lines
607 B
C#
Raw Normal View History

2021-08-27 11:03:47 -04:00
namespace PluralKit.Core
{
public static class Emojis
{
public static readonly string Warn = "\u26A0";
public static readonly string Success = "\u2705";
public static readonly string Error = "\u274C";
public static readonly string Note = "\U0001f4dd";
public static readonly string ThumbsUp = "\U0001f44d";
public static readonly string RedQuestion = "\u2753";
public static readonly string Bell = "\U0001F514";
2020-12-20 11:38:26 +01:00
public static readonly string Image = "\U0001F5BC";
2020-12-20 16:58:52 +01:00
public static readonly string Paperclip = "\U0001F4CE";
}
}