Constant freya_elements::paragraph::font_size  
source · pub const font_size: AttributeDescription;Expand description
You can specify the size of the text using font_size.
§Example
fn app() -> Element {
    rsx!(
        label {
            font_size: "50",
            "Hellooooo!"
        }
    )
}