use crate::{Fallback, Stretch, Style, Weight, XFontType};
#[derive(Default)]
pub struct XFont;
impl XFontType for XFont {
fn fallback(&self, _text: &str, _name: &str, _weight: Weight, _stretch: Stretch, _style: Style) -> Fallback {
Fallback::default()
}
fn system() -> String {
"sans-serif".to_string()
}
}