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 Borders
uiable/uiable-accordion-bordersRemovedComponent
Accordion Borders 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-borders.jsonSource
1// shadcn2import {3 Accordion,4 AccordionContent,5 AccordionItem,6 AccordionTrigger7} from "@/components/ui/accordion";89// constants10const items = [11 {12 value: "billing",13 trigger: "How does billing work?",14 content:15 "We offer monthly and annual subscription plans. Billing is charged at the beginning of each cycle, and you can cancel anytime. All plans include automatic backups, 24/7 support, and unlimited team members."16 },17 {18 value: "security",19 trigger: "Is my data secure?",20 content:21 "Yes. We use end-to-end encryption, SOC 2 Type II compliance, and regular third-party security audits. All data is encrypted at rest and in transit using industry-standard protocols."22 },23 {24 value: "integration",25 trigger: "What integrations do you support?",26 content:27 "We integrate with 500+ popular tools including Slack, Zapier, Salesforce, HubSpot, and more. You can also build custom integrations using our REST API and webhooks."28 }29];3031// ------------------------------ | ACCORDION BORDERS | ------------------------------ //3233export default function AccordionBorders() {34 return (35 <Accordion36 className="max-w-lg rounded-lg border border-border"37 defaultValue={["billing"]}38 >39 {items.map((item) => (40 <AccordionItem41 key={item.value}42 value={item.value}43 className="border-b px-4 last:border-b-0"44 >45 <AccordionTrigger>{item.trigger}</AccordionTrigger>46 <AccordionContent>{item.content}</AccordionContent>47 </AccordionItem>48 ))}49 </Accordion>50 );51}
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 |
