Constant freya_elements::rect::letter_spacing

source ·
pub const letter_spacing: AttributeDescription;
Expand description

Specify the spacing between characters of the text.

§Example

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