Previews

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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")
"Favorite character"
end
menu.with_group do |group|
group.with_heading(title: "Battlestar Galactica")
group.with_item(label: "William Adama")
group.with_item(label: 'Kara "Starbuck" Thrace')
group.with_item(label: 'Sharon "Boomer" Valerii')
group.with_item(label: "Gaius Baltar")
end
menu.with_group do |group|
group.with_heading(title: "Star Trek")
group.with_item(label: "Capt. Jean-luc Picard")
group.with_item(label: "Capt. Kathryn M. Janeway")
group.with_item(label: "Capt. Benjamin L. Sisko")
group.with_item(label: "Capt. James T. Kirk")
end
menu.with_group do |group|
group.with_heading(title: "Star Wars")
group.with_item(label: "Leia Organa")
group.with_item(label: "Luke Skywalker")
group.with_item(label: "Han Solo")
group.with_item(label: "Chewbacca")
end
end