{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "accordion-01",
  "title": "Default Accordion",
  "description": "A default accordion component",
  "registryDependencies": [
    "accordion"
  ],
  "files": [
    {
      "path": "src/components/customized/accordion/accordion-01.tsx",
      "content": "import {\n  Accordion,\n  AccordionContent,\n  AccordionItem,\n  AccordionTrigger,\n} from \"@/registry/ui/accordion\";\n\nconst items = [\n  {\n    title: \"Can I change or cancel my order after placing it?\",\n    content:\n      \"Yes, you can change or cancel your order within 1 hour of placement by visiting your account page or contacting our support team. After that, orders may already be processed for shipping.\",\n  },\n  {\n    title: \"How long does shipping usually take?\",\n    content:\n      \"Domestic shipping typically takes 3-5 business days, while international orders may take up to 2-3 weeks depending on your location and customs processing times.\",\n  },\n  {\n    title: \"What is your return policy?\",\n    content:\n      \"We offer a 30-day return policy for most products. Items must be unused and in their original packaging. To initiate a return, simply contact our support with your order details.\",\n  },\n];\n\nexport default function AccordionDemo() {\n  return (\n    <Accordion className=\"my-4 w-full max-w-lg\" collapsible type=\"single\">\n      {items.map(({ title, content }, index) => (\n        <AccordionItem key={index} value={`item-${index}`}>\n          <AccordionTrigger>{title}</AccordionTrigger>\n          <AccordionContent>{content}</AccordionContent>\n        </AccordionItem>\n      ))}\n    </Accordion>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}