2021-11-27 02:10:56 +00:00
|
|
|
namespace PluralKit.Core;
|
|
|
|
|
|
|
|
public static class Emojis
|
2021-08-27 15:03:47 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
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";
|
|
|
|
public static readonly string Image = "\U0001F5BC";
|
|
|
|
public static readonly string Paperclip = "\U0001F4CE";
|
2020-02-12 14:16:19 +00:00
|
|
|
}
|