Constant freya_elements::elements::label::letter_spacing   
source · 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!"
        }
    )
}