Constant freya_elements::attributes::word_spacing::word_spacing   
source · pub const word_spacing: (&'static str, Option<&'static str>, bool);Expand description
Specify the spacing between words of the text.
§Example
fn app() -> Element {
    rsx!(
        label {
            word_spacing: "10",
            "Hello, World!"
        }
    )
}