web.components.navigation #
struct Dropdown {
pub mut:
label string
items []NavItem
}
fn (dropdown Dropdown) html() string
struct NavItem {
pub mut:
href string
text string
subtitle string
class_name ?string
}
fn (item NavItem) html() string
struct Navbar {
pub mut:
brand NavItem
items []IComponent
user_label string
}