usecrate::theme::Theme;usedioxus::prelude::*;/// An interactive dropdown menu for discoverable content.
pubfnDropdown(_props: DropdownProps)-> Element{rsx!{
div {}}}/// The [`Dropdown`] properties struct for the configuration of the component.
#[derive(Clone, PartialEq, Props)]pubstructDropdownProps{/// Theme.
theme: Theme,
}