Previews

Pages

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
<%= polaris_navigation do |navigation| %>
<% navigation.with_section do |section| %>
<% section.with_item(
url: "#",
label: "Home",
icon: "HomeIcon"
) %>
<% section.with_item(
url: "#",
label: "Orders",
icon: "OrderIcon"
) %>
<% section.with_item(
url: "#",
label: "Products",
icon: "ProductIcon"
) %>
<% end %>
<% navigation.with_section(title: "Sales channels") do |section| %>
<% section.with_action(icon: "PlusCircleIcon") %>
<% section.with_item(
url: "#",
label: "Online Store",
icon: "StoreOnlineIcon"
) %>
<% end %>
<% end %>