# Card
A surface that groups related content.
## Props
| Name | Type | Default | Description |
| --- | --- | --- | --- |
| `title` | `string` | — | Title rendered as the card header. Optional. |
| `padding` | `"sm" \| "md" \| "lg"` | `md` | Inner padding preset. |
| `elevated` | `boolean` | `false` | Apply a soft drop shadow for higher elevation. |
| `children` \* | `ReactNode` | — | Card body content. |
## Basic
**`Basic.stories.tsx`**
```tsx
import { Card } from '../../../src/pixie/Card.js';
import { Button } from '../../../src/pixie/Button.js';
export default () => (
The full Markbook source lives at github.com/doidor/markbook.
Cards with the elevated flag get a soft drop shadow for higher visual emphasis.