Accordion

A Warcraft styled accordion component.

Prince Arthas Menethil returned home not as a savior, but as the harbinger of ruin. Under the influence of Frostmourne, he marched upon his own kingdom. The capital of Lordaeron fell in a single night, its banners burned and its people raised into undeath. Thus began the reign of the Scourge in the Eastern Kingdoms.

Installation

pnpm dlx shadcn@latest add https://warcraftcn.com/r/accordion.json

Usage

import {
  Accordion,
  AccordionContent,
  AccordionItem,
  AccordionTrigger,
} from "@/components/ui/warcraftcn/accordion";

<Accordion type="single" collapsible>
  <AccordionItem value="item-1">
    <AccordionTrigger>Warchief Orders</AccordionTrigger>
    <AccordionContent>
      Build a stronghold quickly, then strike enemy outposts before they can
      fortify.
    </AccordionContent>
  </AccordionItem>
</Accordion>;