about summary refs log tree commit diff
path: root/MiniUtils/Classes/Emojis.cs
blob: aef8904439603aec15a66f78a5082956890b5c08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Diagnostics.CodeAnalysis;

namespace MiniUtils.Classes;

[SuppressMessage("ReSharper", "UnusedMember.Local")]
public class Emojis {
    // Useful page: https://www.compart.com/en/unicode
    
    public const string ThumbsUp = "\ud83d\udc4d\ufe0e";
    public const string Recycle = "\u267b\ufe0e";
    public const string Bullseye = "\u25ce\ufe0e";
    public const string RightArrowWithTail = "\u21a3\ufe0e";
    public const string Prohibited = "\ud83d\udec7\ufe0e";
    public const string Wastebasket = "\ud83d\uddd1\ufe0e";
    public const string Hourglass = "\u231b\ufe0e";
    public const string Checkmark = "\u2705\ufe0e";
}