Constant freya_elements::elements::rect::decoration   
source · pub const decoration: (&'static str, Option<&'static str>, bool);Expand description
Specify the decoration in a text.
Accepted values:
- underline
- line-through
- overline
§Example
fn app() -> Element {
    rsx!(
        label {
            decoration: "line-through",
            "Hello, World!"
        }
    )
}