Module freya_elements::paragraph

source ·
Expand description

paragraph element let’s you build texts with different styles.

This used used with the text element.

fn app() -> Element {
    rsx!(
        paragraph {
            text {
                font_size: "15",
                "Hello, "
            }
            text {
                font_size: "30",
                "World!"
            }
        }
    )
}

Constants§