This component no longer exists. It was in shadcn/ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-05 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
card
accelya-ui-lib/cardRemovedComponent
shadcn/ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by shadcn/ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://raw.githubusercontent.com/ramsaoji/Accelya-UI-Lib/main/public/r/styles/default/card.jsonSource
1import * as React from "react"23import { cn } from "@/lib/utils"45const Card = React.forwardRef<6 HTMLDivElement,7 React.HTMLAttributes<HTMLDivElement>8>(({ className, ...props }, ref) => (9 <div10 ref={ref}11 className={cn(12 "rounded-lg border bg-card text-card-foreground shadow-sm",13 className14 )}15 {...props}16 />17))18Card.displayName = "Card"1920const CardHeader = React.forwardRef<21 HTMLDivElement,22 React.HTMLAttributes<HTMLDivElement>23>(({ className, ...props }, ref) => (24 <div25 ref={ref}26 className={cn("flex flex-col space-y-1.5 p-6", className)}27 {...props}28 />29))30CardHeader.displayName = "CardHeader"3132const CardTitle = React.forwardRef<33 HTMLDivElement,34 React.HTMLAttributes<HTMLDivElement>35>(({ className, ...props }, ref) => (36 <div37 ref={ref}38 className={cn(39 "text-2xl font-semibold leading-none tracking-tight",40 className41 )}42 {...props}43 />44))45CardTitle.displayName = "CardTitle"4647const CardDescription = React.forwardRef<48 HTMLDivElement,49 React.HTMLAttributes<HTMLDivElement>50>(({ className, ...props }, ref) => (51 <div52 ref={ref}53 className={cn("text-sm text-muted-foreground", className)}54 {...props}55 />56))57CardDescription.displayName = "CardDescription"5859const CardContent = React.forwardRef<60 HTMLDivElement,61 React.HTMLAttributes<HTMLDivElement>62>(({ className, ...props }, ref) => (63 <div ref={ref} className={cn("p-6 pt-0", className)} {...props} />64))65CardContent.displayName = "CardContent"6667const CardFooter = React.forwardRef<68 HTMLDivElement,69 React.HTMLAttributes<HTMLDivElement>70>(({ className, ...props }, ref) => (71 <div72 ref={ref}73 className={cn("flex items-center p-6 pt-0", className)}74 {...props}75 />76))77CardFooter.displayName = "CardFooter"7879export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }
