Auxx.ai

<Card />

Card container component with header, content, and footer sections.

A structured container for grouping related content. Composed of multiple sub-components.

import {
  Card,
  CardHeader,
  CardTitle,
  CardDescription,
  CardContent,
  CardFooter,
} from '@auxx/sdk/client'

<Card>
  <CardHeader>
    <CardTitle>Order #1234</CardTitle>
    <CardDescription>Placed on March 1, 2026</CardDescription>
  </CardHeader>
  <CardContent>
    <TextBlock align="left">2 items — $49.99</TextBlock>
  </CardContent>
  <CardFooter>
    <Button label="View Details" variant="outline" />
  </CardFooter>
</Card>

Sub-components

ComponentDescription
CardOuter container
CardHeaderTop section (typically title + description)
CardTitleCard heading text
CardDescriptionCard subtitle / description text
CardContentMain body content
CardFooterBottom section (typically actions)

All sub-components accept children and an optional className.

On this page