pub const fn folder() -> &'static str {
""
}
pub const fn folder_open() -> &'static str {
""
}
pub const fn folder_empty() -> &'static str {
""
}
pub const fn arrow_right() -> &'static str {
""
}
pub const fn arrow_left() -> &'static str {
""
}
pub const fn arrow_up() -> &'static str {
""
}
pub const fn arrow_down() -> &'static str {
""
}
pub const fn chevron_right() -> &'static str {
""
}
pub const fn chevron_left() -> &'static str {
""
}
pub const fn chevron_up() -> &'static str {
""
}
pub const fn chevron_down() -> &'static str {
""
}
pub const fn check() -> &'static str {
""
}
pub const fn cross() -> &'static str {
""
}
pub const fn plus() -> &'static str {
""
}
pub const fn minus() -> &'static str {
""
}
pub const fn edit() -> &'static str {
""
}
pub const fn trash() -> &'static str {
""
}
pub const fn save() -> &'static str {
""
}
pub const fn copy() -> &'static str {
""
}
pub const fn paste() -> &'static str {
""
}
pub const fn cut() -> &'static str {
""
}
pub const fn undo() -> &'static str {
""
}
pub const fn redo() -> &'static str {
""
}
pub const fn refresh() -> &'static str {
""
}
pub const fn search() -> &'static str {
""
}
pub const fn filter() -> &'static str {
""
}
pub const fn sort() -> &'static str {
""
}
pub const fn info() -> &'static str {
""
}
pub const fn warning() -> &'static str {
""
}
pub const fn error() -> &'static str {
""
}
pub const fn success() -> &'static str {
""
}
pub const fn question() -> &'static str {
""
}
pub const fn menu() -> &'static str {
""
}
pub const fn close() -> &'static str {
""
}
pub const fn settings() -> &'static str {
""
}
pub const fn home() -> &'static str {
""
}
pub const fn user() -> &'static str {
""
}
pub const fn users() -> &'static str {
""
}
pub const fn lock() -> &'static str {
""
}
pub const fn unlock() -> &'static str {
""
}
pub const fn eye() -> &'static str {
""
}
pub const fn eye_off() -> &'static str {
""
}
pub const fn star() -> &'static str {
""
}
pub const fn star_filled() -> &'static str {
""
}
pub const fn heart() -> &'static str {
""
}
pub const fn heart_filled() -> &'static str {
""
}
pub const fn bookmark() -> &'static str {
""
}
pub const fn tag() -> &'static str {
""
}
pub const fn link() -> &'static str {
""
}
pub const fn external_link() -> &'static str {
""
}
pub const fn download() -> &'static str {
""
}
pub const fn upload() -> &'static str {
""
}
pub const fn clock() -> &'static str {
""
}
pub const fn calendar() -> &'static str {
""
}
pub const fn bell() -> &'static str {
""
}
pub const fn mail() -> &'static str {
""
}
pub const fn chat() -> &'static str {
""
}
pub const fn terminal() -> &'static str {
""
}
pub const fn code() -> &'static str {
""
}
pub const fn bug() -> &'static str {
""
}
pub const fn lightbulb() -> &'static str {
""
}
pub const fn fire() -> &'static str {
""
}
pub const fn rocket() -> &'static str {
""
}
pub const fn spinner() -> &'static str {
""
}
pub const fn tree_branch() -> &'static str {
"├"
}
pub const fn tree_last() -> &'static str {
"└"
}
pub const fn tree_vertical() -> &'static str {
"│"
}
pub const fn line_horizontal() -> &'static str {
"─"
}
pub const fn line_vertical() -> &'static str {
"│"
}
pub const fn corner_tl() -> &'static str {
"┌"
}
pub const fn corner_tr() -> &'static str {
"┐"
}
pub const fn corner_bl() -> &'static str {
"└"
}
pub const fn corner_br() -> &'static str {
"┘"
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_ui_icons() {
assert_eq!(folder(), "");
assert_eq!(check(), "");
assert_eq!(cross(), "");
}
}