Previews

1
2
3
4
5
6
7
8
<%= render(Primer::Alpha::Dialog.new(id: "dialog-one", title: title, subtitle: subtitle, visually_hide_title: false)) do |d| %>
<% d.with_show_button { button_text } %>
<% d.with_body do %>
<%= render(Primer::Beta::AutoComplete.new(src: url, label_text: "Search", list_id: "list", input_id: "input")) do |a| %>
<% a.with_leading_visual_icon(icon: :search) %>
<% end %>
<% end %>
<% end %>