Previews

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
render(Primer::Beta::NavList.new(aria: { label: "My favorite foods" })) do |list|
list.with_group(id: "foods") do |group|
group.with_heading(title: "My favorite foods")
group.with_item(label: "Popplers", href: "/foods/popplers")
group.with_item(label: "Slurm", href: "/foods/slurm")
group.with_show_more_item(label: "Show more foods", src: UrlHelpers.nav_list_items_path, pages: 2) do |item|
item.with_trailing_visual_icon(icon: :plus)
end
end
list.with_group(id: "snacks") do |group|
group.with_heading(title: "My favorite snacks")
group.with_item(label: "Popplers", href: "/foods/popplers")
group.with_item(label: "Slurm", href: "/foods/slurm")
group.with_show_more_item(label: "Show more snacks", src: UrlHelpers.nav_list_items_path, pages: 4) do |item|
item.with_trailing_visual_icon(icon: :plus)
end
end
end