pub const opacity: (&'static str, Option<&'static str>, bool);Expand description
Specify the opacity of an element and all its descendants.
§Example
fn app() -> Element {
    rsx!(
        rect {
            opacity: "0.5", // 50% visible
            label {
                "I am fading!"
            }
        }
    )
}