Menu
Thin wrapper over Button with popup support. Uses PopupList by default.
Quick start
import { Menu } from "mates-ui";
Menu({
label: "File ▾",
variant: "outlined",
items: [
{ id: "new", label: "New" },
{ id: "open", label: "Open…" },
],
onSelect: (_ids, item) => console.log(item?.id),
popup: { position: "bottom-start" },
});