Previews

No matching results.

x
1
2
3
4
5
6
7
8
<div class="flex flex-col rounded-lg text-lg bg-primary-50 border border-primary-200 text-primary-900 shadow-sm" >
<div class="p-8 border-b border-primary-200">
Large Card
</div>
<div class="p-8">
Large card with generous padding.
</div>
</div>
1
2
3
4
render BetterUi::CardComponent.new(size: :lg) do |card|
card.with_header { "Large Card" }
card.with_body { "Large card with generous padding." }
end