zino-dioxus 0.6.0

Dioxus components for zino.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::theme::Theme;
use dioxus::prelude::*;

/// An interactive dropdown menu for discoverable content.
pub fn Dropdown(_props: DropdownProps) -> Element {
    rsx! {
        div {}
    }
}

/// The [`Dropdown`] properties struct for the configuration of the component.
#[derive(Clone, PartialEq, Props)]
pub struct DropdownProps {
    /// Theme.
    theme: Theme,
}