Sha256: 7c1149311d6f38c27360b5a777c1e09dcb3abd850b35bdc6413b9d4cff54e22e
Contents?: true
Size: 687 Bytes
Versions: 7
Compression:
Stored size: 687 Bytes
Contents
<%= render_alert_dialog do %> <%= alert_dialog_trigger do %> <%= render_button("Open Dialog", variant: :outline) %> <% end %> <%= alert_dialog_content do %> <div class="flex flex-col space-y-2 text-center sm:text-left"> <h2 class="text-lg font-semibold">Are you absolutely sure?</h2> <p class="text-sm text-muted-foreground"> This action cannot be undone. This will permanently delete your account and remove your data from our servers. </p> </div> <% end %> <%= alert_dialog_cancel do %> <%= render_button("Cancel", variant: :outline) %> <% end %> <%= alert_dialog_continue do %> <%= render_button("Continue") %> <% end %> <% end %>
Version data entries
7 entries across 7 versions & 1 rubygems