<%= render(Primer::OpenProject::DangerConfirmationDialog.new( title: "Delete dialog", form_arguments: { action: generic_form_submission_path(format: route_format) } )) do |dialog| %> <% dialog.with_show_button { "Click me" } %> <% dialog.with_confirmation_message do |message| message.with_heading(tag: :h2).with_content("Permanently delete?") message.with_description_content("This action is not reversible. Please proceed with caution.") end %> <% dialog.with_confirmation_check_box_content("I understand that this deletion cannot be reversed") %> <% end %>