Components

Card

A Card component that displays content and actions, typically used to organize related information visually.

Usage

The Card component is used to display content in a card with a title, body, actions, and footer.

The Card component is commonly used to present related information, such as product details or summaries, in a compact and easily digestible format. It is often used inside a MultiColumn component to create a structured and visually balanced layout.

Published

Coffee API

v1

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
::card
---
background-color: "#fff"
border: "1px solid #e0e4ea"
border-radius: "10px"
color: "#333"
margin: "0"
max-width: "500px"
padding: "32px"
width: "500px"
title: "Coffee API"
title-tag: "h2"
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

#actions
  :::k-badge
  v1
  :::

#footer
  :::button
  View API
  :::

#tagline
  :::badge
  ---
  appearance: "success"
  ---
  Published
  :::
::
Card Component Props

The background color of the component. Accepts string | null.

The border of the element. Accepts string | null.

The border radius of the element. Accepts string | null.

The text color of the element. Accepts string.

The margin of the component. Accepts string | null.

The max width of the element. Accepts string.

The padding of the component. Accepts string | null.

The width of the element. Accepts string | null.

Text to display as a card title. Accepts string.

The HTML tag to use for the title.

Props

title

Text to display as the card title, rendered in a heading element. If the title slot is provided, the slot content takes precedence.

  • Type: string
  • Default: ''

titleTag

The HTML tag to use for the title.

  • Type: string
  • Default: h2

truncateTitle

A boolean that determines whether the card title should be truncated.

When set to true, the title will be truncated to 2 lines.

  • Type: boolean
  • Default: true

Shared Props

This component also includes the shared props listed below:

  • backgroundColor - default is initial
  • border - default is 1px solid #e0e4ea
  • borderRadius - default is 10px
  • color - default is #333
  • margin - default is 0
  • padding - default is 32px
  • maxWidth - default is auto
  • textAlign - default is left
  • width - default is 100%'
  • styles - default is ''

See here for more information on shared props.

Slots

tagline

Use the tagline slot to add content above the Card title.

title

Use the title slot to add content to the Card title. When the slot content is provided, it takes precedence over the title prop.

default

Use the default slot to add the main content between the title and footer of the card.

actions

Optionally utilize the actions slot to add content to the top-right corner of the card.

Optionally use the footer slot to add content to the bottom of the card, typically for links or buttons.