Constant freya::elements::text::letter_spacing

pub const letter_spacing: (&'static str, Option<&'static str>, bool);
Expand description

Specify the spacing between characters of the text.

ยงExample

fn app() -> Element {
    rsx!(
        label {
            letter_spacing: "10",
            "Hello, World!"
        }
    )
}