This component no longer exists. It was in ondo-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-09 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.
collapsible
ondo-ui/collapsibleRemovedComponent
An interactive component which expands/collapses a panel.
Install it
npx shadcn@latest add https://ui.ondo.dou.so/r/collapsible.jsonSource
1"use client"23import { Collapsible as CollapsiblePrimitive } from "@base-ui/react/collapsible"45function Collapsible({ ...props }: CollapsiblePrimitive.Root.Props) {6 return <CollapsiblePrimitive.Root data-slot="collapsible" {...props} />7}89function CollapsibleTrigger({ ...props }: CollapsiblePrimitive.Trigger.Props) {10 return (11 <CollapsiblePrimitive.Trigger data-slot="collapsible-trigger" {...props} />12 )13}1415function CollapsibleContent({ ...props }: CollapsiblePrimitive.Panel.Props) {16 return (17 <CollapsiblePrimitive.Panel data-slot="collapsible-content" {...props} />18 )19}2021export { Collapsible, CollapsibleTrigger, CollapsibleContent }
What it pulls in
npm packages
