This component no longer exists. It was in uiable’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-07 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Accordion Card
uiable/uiable-accordion-cardRemovedComponent
Accordion Card variant for component.
Live preview
live · rendered by the registry
Rendered by uiable on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://uiable.com/r/uiable-accordion-card.jsonSource
1// shadcn2import {3 Accordion,4 AccordionContent,5 AccordionItem,6 AccordionTrigger7} from "@/components/ui/accordion";8import {9 Card,10 CardContent,11 CardDescription,12 CardHeader,13 CardTitle14} from "@/components/ui/card";1516// constants17const items = [18 {19 value: "plans",20 trigger: "What subscription plans do you offer?",21 content:22 "We offer three subscription tiers: Starter ($9/month), Professional ($29/month), and Enterprise ($99/month). Each plan includes increasing storage limits, API access, priority support, and team collaboration features."23 },24 {25 value: "billing",26 trigger: "How does billing work?",27 content:28 "Billing occurs automatically at the start of each billing cycle. We accept all major credit cards, PayPal, and ACH transfers for enterprise customers. You'll receive an invoice via email after each payment."29 },30 {31 value: "cancel",32 trigger: "How do I cancel my subscription?",33 content:34 "You can cancel your subscription anytime from your account settings. There are no cancellation fees or penalties. Your access will continue until the end of your current billing period."35 }36];3738// ------------------------------ | ACCORDION CARD | ------------------------------ //3940export default function AccordionCard() {41 return (42 <Card className="w-full max-w-sm">43 <CardHeader>44 <CardTitle>Subscription & Billing</CardTitle>45 <CardDescription>46 Common questions about your account, plans, payments and47 cancellations.48 </CardDescription>49 </CardHeader>50 <CardContent>51 <Accordion defaultValue={["plans"]}>52 {items.map((item) => (53 <AccordionItem key={item.value} value={item.value}>54 <AccordionTrigger>{item.trigger}</AccordionTrigger>55 <AccordionContent>{item.content}</AccordionContent>56 </AccordionItem>57 ))}58 </Accordion>59 </CardContent>60 </Card>61 );62}
What it pulls in
Other registry items
Files it writes
More from uiable
All 747 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Accordionaccordion | uiable | Components | Free | 2 deps | |
| Accordion Basicaccordion-basic | uiable | Components | Free | no deps | |
| Accordion Bordersaccordion-borders | uiable | Components | Free | no deps | |
| Accordion Cardaccordion-card | uiable | Components | Free | no deps | |
| Accordion Disabledaccordion-disabled | uiable | Components | Free | no deps | |
| Accordion Flushaccordion-flush | uiable | Components | Free | no deps | |
| Accordion Multipleaccordion-multiple | uiable | Components | Free | no deps | |
| Alertalert | uiable | Components | Free | 1 dep |
