1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//! Emoji constants for UI messages.
//! Used to enhance readability and provide visual feedback in terminal output.
/// Info/neutral status indicator
pub const INFO: &str = "โน๏ธ";
/// Success/positive status indicator
pub const SUCCESS: &str = "โ
";
/// Failure/negative status indicator
pub const ERROR: &str = "๐ซ";
/// File/folder indicator
pub const FILES: &str = "๐";
/// Search/preview/inspection indicator
pub const INSPECT: &str = "๐";
/// Changes indicator
pub const CHANGES: &str = "๐";
/// Stage/add indicator
pub const STAGE: &str = "๐ฆ";
/// Unsustage/remove indicator
pub const UNSTAGE: &str = "โฉ๏ธ";
/// Dry run/preview indicator
pub const DRY_RUN: &str = "๐";
/// Construction/in-progress indicator
pub const IN_PROGRESS: &str = "๐จ";
/// Preview/construction work indicator
pub const PREVIEW: &str = "๐ง";
/// Complete/finished indicator
pub const COMPLETE: &str = "๐";
/// Cleanup/remove indicator
pub const CLEANUP: &str = "๐งน";
/// Warning indicator
pub const WARN: &str = "โ ๏ธ";
/// Arrow/direction indicator
pub const ARROW: &str = "โ";
/// Checkmark for list items
pub const CHECK: &str = "โ";
/// Cross for list items
pub const CROSS: &str = "โ";