1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-23 07:09:39 +02:00
Maybe/app/views/settings/_section.html.erb

13 lines
381 B
Text
Raw Normal View History

<%# locals: (title:, subtitle: nil, content:) %>
<section class="bg-white border border-alpha-black-25 shadow-xs rounded-xl p-4 space-y-4">
<div>
<h2 class="text-lg font-medium text-gray-900"><%= title %></h2>
<% if subtitle.present? %>
<p class="text-gray-500 text-sm mt-1"><%= subtitle %></p>
<% end %>
</div>
<div>
<%= content %>
</div>
</section>