vapor-community / HTMLKit-Components

This package contains common UI-components wich are build with HTMLKit.
MIT License
4 stars 1 forks source link

Add a dropdown-component #9

Open mattesmohr opened 2 years ago

mattesmohr commented 2 years ago

Add a dropdown-component for like a dropdown button or context menu similar to this:

Dropdown {
    Action {
        Symbol(name: "arrow-down")
    }
    List {
        ListItem {
            Link(destination: "/edit")
        }
        ListItem {
            Link(destination: "/remove")
        }
    }
}