pub const line_height: (&'static str, Option<&'static str>, bool);
Specify the height of the lines of the text.
fn app() -> Element { rsx!( label { line_height: "3", "Hello, World! \n Hello, again!" } ) }