This component no longer exists. It was in Pure UI’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-10 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
pure-ui/cardRemovedComponent
A customizable card component
Install it
npx shadcn@latest add https://raw.githubusercontent.com/MusKRI/pure-ui/main/public/r/card.jsonSource
1import React from "react";23import { cn } from "@/lib/classes";45interface CardProps extends React.ComponentProps<"div"> {}67function Card({ className, ...props }: CardProps) {8 return (9 <div10 data-slot="card"11 className={cn(12 "relative flex flex-col gap-3 overflow-hidden p-4 rounded-xl border border-border/60",13 "bg-card shadow-xs in-data-[slot=popover-popup]:bg-transparent in-data-[slot=popover-popup]:shadow-none",14 className15 )}16 {...props}17 />18 );19}2021interface CardHeaderProps extends React.ComponentProps<"div"> {}2223function CardHeader({ className, ...props }: CardHeaderProps) {24 return (25 <div26 data-slot="card-header"27 className={cn("flex flex-col", className)}28 {...props}29 />30 );31}3233interface CardTitleProps extends React.ComponentProps<"h3"> {}3435function CardTitle({ className, ...props }: CardTitleProps) {36 return (37 <h338 data-slot="card-title"39 className={cn("text-base text-card-foreground leading-6", className)}40 {...props}41 />42 );43}4445interface CardDescriptionProps extends React.ComponentProps<"p"> {}4647function CardDescription({ className, ...props }: CardDescriptionProps) {48 return (49 <p50 data-slot="card-description"51 className={cn("text-muted-foreground text-sm", className)}52 {...props}53 />54 );55}5657interface CardContentProps extends React.ComponentProps<"div"> {}5859function CardContent({ className, ...props }: CardContentProps) {60 return (61 <div62 data-slot="card-content"63 className={cn("flex flex-col gap-1 flex-1", className)}64 {...props}65 />66 );67}6869interface CardFooterProps extends React.ComponentProps<"div"> {}70function CardFooter({ className, ...props }: CardFooterProps) {71 return (72 <div73 data-slot="card-footer"74 className={cn("flex flex-row items-center", className)}75 {...props}76 />77 );78}7980export {81 Card,82 CardHeader,83 CardTitle,84 CardDescription,85 CardContent,86 CardFooter,87};
What it pulls in
npm packages
Other registry items
