Files
hexapoda/src/empty_span.rs
T
2026-03-16 20:31:49 -05:00

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("")
}
}