dwfv/tui/symbols.rs
1// SPDX-License-Identifier: MIT
2pub mod arrow {
3 pub const UP: &str = "^";
4 pub const DOWN: &str = "v";
5 pub const DOUBLE_UP: &str = "▲";
6 pub const DOUBLE_DOWN: &str = "▼";
7}
8
9pub mod block {
10 pub const LIGHT_UPPER: &str = "╨";
11 pub const LIGHT_LOWER: &str = "╥";
12 pub const LIGHT: &str = "║";
13 pub const MEDIUM_UPPER: &str = "┸";
14 pub const MEDIUM_LOWER: &str = "┰";
15 pub const MEDIUM: &str = "┃";
16 pub const FULL_UPPER: &str = "▀";
17 pub const FULL_LOWER: &str = "▄";
18 pub const FULL: &str = "█";
19}