{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "accordion-default",
  "type": "registry:component",
  "title": "Accordion",
  "author": "Toby Belhome",
  "description": "A vertically stacked set of interactive headings that each reveal a section of content.",
  "dependencies": [],
  "registryDependencies": [],
  "files": [
    {
      "path": "examples/components/accordion/default/page.tsx",
      "content": "import {\n  Accordion,\n  AccordionContent,\n  AccordionItem,\n  AccordionTrigger\n} from \"@/components/ui/accordion\";\n\nconst items = [\n  {\n    id: \"1\",\n    title: \"Product Information\",\n    content:\n      \"Our flagship product combines cutting-edge technology with sleek design. Built with premium materials, it offers unparalleled performance and reliability.\"\n  },\n  {\n    id: \"2\",\n    title: \"Shipping Details\",\n    content:\n      \"We offer worldwide shipping through trusted courier partners. Standard delivery takes 3-5 business days, while express shipping ensures delivery within 1-2 business days.\"\n  },\n  {\n    id: \"3\",\n    title: \"Return Policy\",\n    content:\n      \"We stand behind our products with a comprehensive 30-day return policy. If you&apos;re not completely satisfied, simply return the item in its original condition.\"\n  }\n];\n\nexport default function AccordionDemo() {\n  return (\n    <Accordion type=\"single\" className=\"w-full\" defaultValue=\"1\">\n      {items.map((item) => (\n        <AccordionItem value={item.id} key={item.id} className=\"py-2\">\n          <AccordionTrigger className=\"font-semibold\">{item.title}</AccordionTrigger>\n          <AccordionContent className=\"text-muted-foreground pb-2\">{item.content}</AccordionContent>\n        </AccordionItem>\n      ))}\n    </Accordion>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/accordion-default.tsx"
    }
  ],
  "meta": {
    "isPro": false
  }
}