Constant freya::elements::paragraph::font_size

pub const font_size: (&'static str, Option<&'static str>, bool);
Expand description

You can specify the size of the text using font_size.

ยงExample

fn app() -> Element {
    rsx!(
        label {
            font_size: "50",
            "Hellooooo!"
        }
    )
}