Previews

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
render(Primer::Alpha::ActionMenu.new(menu_id: "menu-1")) do |menu|
menu.with_show_button do |button|
button.with_trailing_action_icon(icon: :"triangle-down")
"Meal preference"
end
menu.with_item(label: "Meat option")
menu.with_divider
menu.with_group do |group|
group.with_heading(title: "Vegetarian options")
group.with_item(label: "Grilled portbello mushroom")
group.with_item(label: "Polenta")
group.with_item(label: "Seitan")
end
menu.with_divider
menu.with_item(label: "Fish option")
end