This component no longer exists. It was in Quantumblack Design System Registry’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-08 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
quantumblack-design-system-registry/cardRemovedComponent
A card component.
Install it
npx shadcn@latest add http://designsystem.quantumblack.com/r/card.jsonSource
1import type * as React from 'react';23import { cn } from '@/lib/utils';45function Card({ className, ...props }: React.ComponentProps<'div'>) {6 return (7 <div8 data-slot="card"9 className={cn(10 'bg-surface-primary text-fg-primary flex flex-col gap-3 p-6',11 className,12 )}13 {...props}14 />15 );16}1718function CardHeader({ className, ...props }: React.ComponentProps<'div'>) {19 return (20 <div21 data-slot="card-header"22 className={cn(23 'grid auto-rows-min grid-rows-[auto_auto] items-start gap-1 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-3',24 className,25 )}26 {...props}27 />28 );29}3031function CardTitle({ className, ...props }: React.ComponentProps<'div'>) {32 return (33 <div34 data-slot="card-title"35 className={cn('text-fg-primary leading-none font-semibold', className)}36 {...props}37 />38 );39}4041function CardDescription({ className, ...props }: React.ComponentProps<'div'>) {42 return (43 <div44 data-slot="card-description"45 className={cn('text-fg-secondary text-sm', className)}46 {...props}47 />48 );49}5051function CardAction({ className, ...props }: React.ComponentProps<'div'>) {52 return (53 <div54 data-slot="card-action"55 className={cn(56 'col-start-2 row-span-2 row-start-1 self-start justify-self-end',57 className,58 )}59 {...props}60 />61 );62}6364function CardContent({ className, ...props }: React.ComponentProps<'div'>) {65 return (66 <div data-slot="card-content" className={cn('', className)} {...props} />67 );68}6970function CardFooter({ className, ...props }: React.ComponentProps<'div'>) {71 return (72 <div73 data-slot="card-footer"74 className={cn('flex items-center [.border-t]:pt-3', className)}75 {...props}76 />77 );78}7980export {81 Card,82 CardHeader,83 CardFooter,84 CardTitle,85 CardAction,86 CardDescription,87 CardContent,88};
What it pulls in
Other registry items
