Dialog

Default Button

  <%= render RailsUi::Dialog::Component.new(
      title: "Are you absolutely sure?",
      description: "This action cannot be undone. This will permanently delete your account and remove your data from our servers.",
      close_on_click_outside: true
    ) do |c| %>
      <% c.with_trigger do |t| %>
        <%= button_tag "Delete Account", 
                      type: "button", 
                      class: "px-4 py-2 bg-red-500 text-white rounded",
                      data: {action: "click->ui-dialog#open"} %>
      <% end %>
    <% end %>