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