{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "card", "type": "registry:ui", "title": "Card", "files": [ { "path": "ui/card.tsrx", "type": "registry:ui", "target": "components/ui/card.tsrx", "content": "// Base UI base card — presentational, no headless primitive in any base.\n//\n// UNVERIFIED PROVENANCE: derived from this package's React Aria base rather than transcribed\n// from upstream's `bases/base-ui/ui/card.tsx`, which was not available at port time.\n// Diff the class strings against the upstream source before treating this as ported.\nimport { cn } from '@/lib/utils';\nimport type { DivProps } from '@/lib/types';\n\nexport interface CardProps extends DivProps {\n\tsize?: 'default' | 'sm';\n}\n\nexport function Card({ className, size = 'default', ...props }: CardProps) @{\n\t