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