Constant freya::elements::label::decoration

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!"
        }
    )
}