2021-11-26 21:10:56 -05:00
|
|
|
namespace PluralKit.Core;
|
|
|
|
|
|
|
|
public static class Emojis
|
2021-08-27 11:03:47 -04:00
|
|
|
{
|
2021-11-26 21:10:56 -05: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 15:16:19 +01:00
|
|
|
}
|