Card
A composable card container with header, content, and footer slots.
Import
import { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from "neoterm-ui";Usage
<Card>
<CardHeader>
<CardTitle>System Status</CardTitle>
<CardDescription>All services operational</CardDescription>
</CardHeader>
<CardContent>
<p>CPU usage: 42%</p>
</CardContent>
<CardFooter>
<Button>Refresh</Button>
</CardFooter>
</Card>Subcomponents
| Prop | Type | Default | Description |
|---|---|---|---|
| Card | div wrapper | — | Root card container with terminal styling. |
| CardHeader | div | — | Header section. |
| CardTitle | h3 | — | Title text. |
| CardDescription | p | — | Description / subtitle. |
| CardContent | div | — | Main content area. |
| CardFooter | div | — | Footer with actions. |