Previews

1
2
3
4
5
6
7
8
9
10
11
<%= 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 %>
<p>Dialog One!</p>
<form>
<label for="dialog-text-input-example">Example input</label>
<input id="dialog-text-input-example" type="text" value="Some text goes in here" autocomplete="off">
</form>
<% end %>
<% end %>