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