mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 22:59:39 +02:00
12 lines
381 B
Text
12 lines
381 B
Text
<%# 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>
|