Constant freya_elements::label::line_height

source ·
pub const line_height: AttributeDescription;
Expand description

§line_height

Specify the height of the lines of the text.

§Example

fn app() -> Element {
    rsx!(
        label {
            line_height: "3",
            "Hello, World! \n Hello, again!"
        }
    )
}