Skip to Content
DocumentationCardsCard Continue

Card Continue

A horizontal card for displaying in-progress content items in a “Continue where you left off” section. Shows an image on the left, a breadcrumb path and title on the right, and a continue action button.

Examples

Basic

Default state with all sub-components composed together.

Histology of the Cardiovascular System

API

CardContinue structure

ComponentDescriptionUsage
CardContinueRoot container with border and rounded cornersWraps image and content in a horizontal flex layout
CardContinueImageLeft image area fixed at 200×122px with rounded cornersPass src for an image or add children for custom content. Falls back to a muted background when empty.
CardContinueContentRight content column with space-between layout (padding comes from the card root)Wraps CardContinueHeader at the top and CardContinueButton at the bottom
CardContinueHeaderVertical group for breadcrumb and title with tight spacingUse to visually group CardContinueBreadcrumb and CardContinueTitle together
CardContinueBreadcrumbCompact breadcrumb built on the project’s Breadcrumb component, rendered at text-xsPass items as an array of strings; the last item is highlighted as the current page
CardContinueTitleSemibold text-lg primary-foreground title, clamped to 2 linesMain heading of the content item
CardContinueButtonPre-built emphasis-soft action button with ArrowRightSm iconRenders a size="sm" Button. Must always pass label via children.

CardContinue

PropTypeDefaultDescription
…propsReact.ComponentProps<“div”>-All native div props are supported.

CardContinueImage

PropTypeDefaultDescription
srcstring-Image URL. When provided, renders an &lt;img&gt; covering the image area with object-cover.
altstring""Alt text for the image element.
childrenReact.ReactNode-Rendered when src is not provided. Use for custom overlays or fallback content.
…propsReact.ComponentProps<“div”>-All native div props are supported.

CardContinueButton

PropTypeDefaultDescription
childrenReact.ReactNode-Button label text. Required to localise or define the call-to-action.
…propsButtonProps-All Button props are supported. Defaults to variant="emphasis-soft" and size="sm" with ArrowRightSm icon.
Last updated on