{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "image-card", "type": "registry:ui", "title": "Image Card", "description": "A card component optimized for displaying images with captions.", "files": [ { "path": "registry/new-york/ui/image-card.tsx", "content": "import { cn } from \"@/lib/utils\";\n\ntype Props = {\n imageUrl: string;\n caption: string;\n className?: string;\n};\n\nexport default function ImageCard({ imageUrl, caption, className }: Props) {\n return (\n \n \n
\n {caption}\n
\n \n );\n}\n", "type": "registry:ui" } ] }