<%= render(Primer::OpenProject::DangerConfirmationDialog.new(id: "my-dialog")) do |dialog| %> <% dialog.with_show_button { "Click me" } %> <% dialog.with_confirmation_message(icon_arguments: { icon: icon, color: icon_color }) do |message| %> <% message.with_heading(tag: :h2).with_content("Proceed with danger?") %> <% message.with_description_content("This action is not reversible and may cause permanent damage.") if show_description %> <% end %> <% if show_additional_details %> <% dialog.with_additional_details do %> <%= render(Primer::Alpha::Banner.new) { "Some additional details below" } %> <% end %> <% end %> <% dialog.with_confirmation_check_box_content(check_box_text) %> <% end %>