Card
Installation
Install the component via the CLI in one command.
npx shadcn@latest add @intentui/card
Manual installation
Use this approach if you prefer to install and wire up the component yourself instead of using the CLI.
npm install tailwind-merge
Anatomy
import {
Card,
CardAction,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
} from "@/components/ui/card"<Card>
<CardHeader>
<CardTitle>Card Title</CardTitle>
<CardDescription>Card Description</CardDescription>
<CardAction>Card Action</CardAction>
</CardHeader>
<CardContent>Card Content</CardContent>
<CardFooter>Card Footer Button</CardFooter>
</Card>Examples
With form
Sometimes, you may need a card with a form inside.
Action
You can add actions to your card, which will be aligned to the right. This example demonstrates using the menu component, but you can use any component you prefer.
With table
When you place a table inside a card, The table gutter inherits the padding from its parent card to ensure visual consistency.
For table docs, check out the Table docs.
Section title
Sometimes, you may only need a card header without wrapping container itself. Of course, you need don't want the default padding, right? So I have prop called withoutPadding to help you out.
<CardHeader
title="List Daemons"
description="List of daemons to use in your sites."
/>Component API
Card
Card extends the native <div> element.
classNamestringCardAction
CardAction extends the native <div> element.
classNamestringCardContent
CardContent extends the native <div> element.
classNamestringCardDescription
CardDescription extends the native <div> element.
classNamestringCardFooter
CardFooter extends the native <div> element.
classNamestringCardHeader
CardHeader extends the native <div> element.
classNamestringdescriptionstringtitlestringCardTitle
CardTitle extends the native <div> element.
classNamestring