Lambda UI
v1.3.4
Stable

Card

Card component is a container for text, photos, and actions in the context of a single subject.

Playground

Experiment with all the properties of the Card component in real time.

Properties
header

Configuration for the card header.

actions

Configuration for the card actions.

children

Main content of the card.

image
Image

Configuration for the card image.

variant

Defines the visual style of the card.

size
Medium

Controls the overall card size.

radius
Medium

Controls the roundness of the corners.

https://images.unsplash.com/photo-1555041469-a586c61ea9bc?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80

Card Title

Card Description

Usage

import { Card } from "lambda-ui-components";

export default function App() {
	return (
		<Card 
			header={{ title: "Card Title", description: "Card Description" }}
			image={{ src: "image-url.jpg", alt: "Image Alt" }}
		>
			<p>This is the main content of the card.</p>
		</Card>
	);
}

API Reference

Props

Prop
Default
Type
image
undefined
ICardImage
header
undefined
ICardHeader
actions
undefined
ICardActions[]
variant
"solid"
"solid" | "outline" | "soft"
size
"medium"
"small" | "medium" | "large"
radius
"medium"
"none" | "tiny" | "small" | "medium" | "large" | "full"
children
undefined
ReactNode
The modern React component library.
© 2026 Lambda UI. Made with in Mexico by AletzMan.