10 lines
174 B
Rust
10 lines
174 B
Rust
use std::borrow::Cow;
|
|
use ratatui::{style::Style, text::Span};
|
|
|
|
pub const fn empty_span() -> Span<'static> {
|
|
Span {
|
|
style: Style::new(),
|
|
content: Cow::Borrowed("")
|
|
}
|
|
}
|