pub fn BottomTab(_: BottomTabProps) -> Result<VNode, RenderError>Expand description
Clickable BottomTab. Same thing as Tab but designed to be placed in the bottom of your app,
usually used in combination with [Tabsbar], [crate::Link] and [crate::ActivableRoute].
§Styling
Inherits the BottomTabTheme theme.
§Example
fn app() -> Element {
    rsx!(
        Tabsbar {
            BottomTab {
                label {
                    "Home"
                }
            }
            Link {
                to: Route::Settings,
                BottomTab {
                    label {
                        "Settings"
                    }
                }
            }
        }
    )
}§Preview
§Props
For details, see the props struct definition.