Constant freya_elements::elements::svg::height   
source · pub const height: (&'static str, Option<&'static str>, bool);Expand description
Specify the width for the given element.
See syntax in Size Units.
§Example
fn app() -> Element {
    rsx!(
        rect {
            background: "red",
            width: "15",
            height: "50",
        }
    )
}