x
1
2
3
4
5
6
7
8
<div class="flex flex-col rounded-lg text-base bg-transparent text-primary-600 shadow-sm" > <div class="p-6 border-b border-transparent"> Ghost Card </div> <div class="p-6"> Transparent background with colored text. Most subtle option. </div></div>1
2
3
4
render BetterUi::CardComponent.new(variant: :primary, style: :ghost) do |card| card.with_header { "Ghost Card" } card.with_body { "Transparent background with colored text. Most subtle option." }endNo notes provided.
No params configured.