mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 23:01:05 +00:00
10 lines
159 B
Rust
10 lines
159 B
Rust
use serde::Deserialize;
|
|
|
|
use crate::Style;
|
|
|
|
#[derive(Clone, Debug, Deserialize)]
|
|
pub struct Icon {
|
|
pub text: String,
|
|
#[serde(flatten)]
|
|
pub style: Style,
|
|
}
|