Card.Content Props
Main content area of the Card Contains the primary content
| Prop | Type | Default |
|---|---|---|
className | string | — |
children | ReactNode | — |
A container component that groups related content and actions.
Card description.
<Card.Root>
<Card.Header>
<Card.Title />
<Card.Description />
</Card.Header>
<Card.Content />
<Card.Footer />
</Card.Root>
import { Card } from '@ivaldi/ui'<Card.Root>
<Card.Header>
<Card.Title>Card Title</Card.Title>
<Card.Description>Optional card description</Card.Description>
</Card.Header>
<Card.Content>
<p>Main content area</p>
</Card.Content>
<Card.Footer>
<Button>Action</Button>
</Card.Footer>
</Card.Root>
Root component for the Card system Provides container styles and layout for card content
| Prop | Type | Default |
|---|
Main content area of the Card Contains the primary content
| Prop | Type | Default |
|---|---|---|
className | string | — |
children | ReactNode | — |
Description component for the Card Renders secondary text below the title
| Prop | Type | Default |
|---|---|---|
className | string | — |
children | ReactNode | — |
Footer section of the Card Usually contains actions or additional information
| Prop | Type | Default |
|---|---|---|
className | string | — |
children | ReactNode | — |
Header section of the Card Contains title and optional description
| Prop | Type | Default |
|---|---|---|
className | string | — |
children | ReactNode | — |
Title component for the Card Renders as an h3 heading by default
| Prop | Type | Default |
|---|