mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 00:31:04 +00:00
15 lines
221 B
Rust
15 lines
221 B
Rust
use super::Style;
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub struct Icon {
|
|
pub text: String,
|
|
pub style: Style,
|
|
}
|
|
|
|
#[derive(Clone, Copy, Debug, Default)]
|
|
pub enum IconCache {
|
|
#[default]
|
|
Missing,
|
|
Undefined,
|
|
Icon(&'static Icon),
|
|
}
|