Card

A card is like a digital business card, presenting information in a neat and organized way. It's a versatile component that can display a variety of content, from simple text to images and buttons. With a card, you can easily showcase important information without overwhelming your users.

Examples

<div class="card">
    123
</div>
@use '~/styles/app.scss' as app;

$card: app.get-theme(app.$theme, 'components.card');

@include app.generate-component(
    $card,
    'card',
    app.$config,
    app.$theme
);