LinkCard

LinkCard is Card's "always a link" cousin. Renders as an <a> with a trailing right-arrow glyph and a hover accent. Use it for cross-references and next-step tiles.

Basic use

External

Set External="true" for outbound links : adds target="_blank" and rel="noopener".

In a grid

The canonical use : pair with CardGrid for prev/next-style "keep reading" tiles at the bottom of a page.

Props

Prop Type Default Description
HrefRequired string Target URL. Required : LinkCard is always a link.
Title string? Title, bold, primary color.
Description string? Short muted description below the title.
External bool false When true, adds `target='_blank'` and `rel='noopener'`.

LinkCard vs Card

Prop Type Default Description
Always a link LinkCard `Href` is required. The trailing arrow signals click affordance visually.
Rich body Card `Card` accepts ChildContent for lists, code blocks, nested components. `LinkCard` is title + description only.
Icon slot Card Only `Card` renders an `IconSvg` above the title.

See also