{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "product-card-size-demo",
  "registryDependencies": [
    "@delta/product-card"
  ],
  "files": [
    {
      "path": "examples/product-card-size-demo.tsx",
      "content": "\"use client\"\n\nimport {\n  ProductCard,\n  ProductCardContent,\n  ProductCardHeader,\n  ProductCardImage,\n  ProductCardMetric,\n  ProductCardSubtitle,\n  ProductCardTitle,\n} from \"@/components/ui/product-card\"\n\nexport function ProductCardSizeDemo() {\n  return (\n    <div className=\"w-full\">\n      <ProductCard size=\"lg\">\n        <ProductCardImage\n          src=\"https://assets.curated.supply/Analogue_Pocket.webp\"\n          alt=\"Analogue Pocket\"\n        />\n\n        <ProductCardContent>\n          <ProductCardHeader>\n            <ProductCardTitle>Analogue Pocket</ProductCardTitle>\n            <ProductCardSubtitle>Gaming Console</ProductCardSubtitle>\n          </ProductCardHeader>\n          <ProductCardMetric>$219</ProductCardMetric>\n        </ProductCardContent>\n      </ProductCard>\n    </div>\n  )\n}\n",
      "type": "registry:example"
    }
  ],
  "type": "registry:example"
}