SYS:ONLINE● ACTIVE
THEME
GITHUBv0.1.0

CARD

Surface container with header, content, and footer sections.

PREVIEW

REACTOR CORE

ONLINE

Power generation subsystem alpha

Output: 1.21 GW · Temp: 847°C · Efficiency: 94%

INSTALLATION

BASH
npx shadcn@latest add @scificn/card

USAGE

TSX
import { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from '@scificn/ui'

export function Example() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>MODULE ALPHA</CardTitle>
        <CardDescription>System subsection</CardDescription>
      </CardHeader>
      <CardContent>Content goes here.</CardContent>
      <CardFooter>Footer actions</CardFooter>
    </Card>
  )
}

PROPS

PROPTYPEDEFAULTDESCRIPTION
CardHTMLDivElementRoot card container.
CardHeaderHTMLDivElementTop section with title and description.
CardTitleHTMLHeadingElementCard heading text.
CardDescriptionHTMLParagraphElementSubtitle or descriptive text.
CardContentHTMLDivElementMain body content area.
CardFooterHTMLDivElementBottom action area.