Previews

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<%= render(Primer::Alpha::Menu.new) do |component| %>
<% component.with_heading(tag: :h2) do %>
Heading
<% end %>
<% component.with_item(selected: true, href: "#url") do %>
Item 1
<% end %>
<% component.with_item(href: "#url") do %>
<%= render(Primer::Beta::Octicon.new("check")) %>
With Icon
<% end %>
<% component.with_item(href: "#url") do %>
<%= render(Primer::Beta::Octicon.new("check")) %>
With Icon and Counter
<%= render(Primer::Beta::Counter.new(count: 25)) %>
<% end %>
<% end %>