Previews

No matching results.

x
1
2
3
4
5
6
7
8
<div class="flex flex-col rounded-lg text-base bg-info-50 border border-info-200 text-info-900 shadow-sm" >
<div class="p-6 border-b border-info-200">
ℹ Information
</div>
<div class="p-6">
Here's some helpful information for you.
</div>
</div>
1
2
3
4
render BetterUi::CardComponent.new(variant: :info) do |card|
card.with_header { "ℹ Information" }
card.with_body { "Here's some helpful information for you." }
end