dioxus-material 0.3.0

Animation library for Dioxus
Documentation
1
2
3
4
5
6
7
8
use dioxus::prelude::*;

#[component]
pub fn Tab(children: Element) -> Element {
    rsx!(
        div { font_size: "1.2em", padding: "10px 0", text_align: "center", {children} }
    )
}