Card

Displays a card with header, content, and footer.

Preview

Login to your account
Enter your email below to login to your account

Installation

$npx maddex add Card

Usage

1<!-- @import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from ../../lib/components -->
2
3<Card>
4  <CardHeader>
5    <CardTitle>Card Title</CardTitle>
6    <CardDescription>Card Description</CardDescription>
7  </CardHeader>
8  <CardContent>
9    <p>Card Content</p>
10  </CardContent>
11  <CardFooter>
12    <p>Card Footer</p>
13  </CardFooter>
14</Card>