mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-15 05:43:56 +02:00
18 lines
642 B
Go
18 lines
642 B
Go
package emoji
|
|
|
|
const (
|
|
CheckMarkButton = "\u2705" // ✅
|
|
CheckMark = "\u2714\ufe0f" // ✔️
|
|
CrossMark = "\u274c" // ❌
|
|
GreenCircle = "\U0001f7e2" // 🟢
|
|
House = "\U0001f3e0" // 🏠
|
|
Package = "\U0001f4e6" // 📦
|
|
Prohibited = "\U0001f6ab" // 🚫
|
|
QuestionMark = "\u2753" // ❓
|
|
RedCircle = "\U0001f534" // 🔴
|
|
Warning = "\u26a0\ufe0f" // ⚠️
|
|
InboxTray = "\U0001f4e5" // 📥
|
|
DownArrow = "\u2b07" // ⬇️
|
|
Wastebasket = "\U0001f5d1" // 🗑
|
|
Sync = "\U0001F504" // 🔄 official name is Anticlockwise Downwards and Upwards Open Circle Arrows and I'm not even joking
|
|
)
|