<%# locals: (title:, subtitle: nil, content:, collapsible: false, open: true) %> <% if collapsible %>
class="group bg-container shadow-border-xs rounded-xl p-4">
<%= icon "chevron-right", class: "text-secondary group-open:transform group-open:rotate-90 transition-transform" %>

<%= title %>

<% if subtitle.present? %>

<%= subtitle %>

<% end %>
<%= content %>
<% else %>

<%= title %>

<% if subtitle.present? %>

<%= subtitle %>

<% end %>
<%= content %>
<% end %>