Previews

1
2
3
4
5
6
7
8
9
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")
"Menu"
end
menu.with_item(label: "Item label") do |item|
item.with_description.with_content("Block description")
end
end