Create a styled card container using Designsystemet styles.
Examples
ds_card(
ds_card_block(
ds_heading("Card Title", level = 3),
ds_paragraph("Card content goes here.")
)
)
#> <div class="ds-card">
#> <div class="ds-card__block">
#> <h3 class="ds-heading">Card Title</h3>
#> <p class="ds-paragraph">Card content goes here.</p>
#> </div>
#> </div>