Collapsible
boldkit/collapsibleFreeComponent
An interactive component which expands/collapses a panel
Live preview
live · rendered by the registry
Rendered by boldkit on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://boldkit.dev/r/collapsible.jsonSource
1import * as React from 'react'2import * as CollapsiblePrimitive from '@radix-ui/react-collapsible'3import { cn } from '@/lib/utils'45const Collapsible = CollapsiblePrimitive.Root67const CollapsibleTrigger = React.forwardRef<8 React.ElementRef<typeof CollapsiblePrimitive.CollapsibleTrigger>,9 React.ComponentPropsWithoutRef<typeof CollapsiblePrimitive.CollapsibleTrigger>10>(({ className, ...props }, ref) => (11 <CollapsiblePrimitive.CollapsibleTrigger12 ref={ref}13 className={cn(14 'transition duration-150 [&[data-state=open]>svg]:rotate-180',15 className16 )}17 {...props}18 />19))20CollapsibleTrigger.displayName = CollapsiblePrimitive.CollapsibleTrigger.displayName2122const CollapsibleContent = React.forwardRef<23 React.ElementRef<typeof CollapsiblePrimitive.CollapsibleContent>,24 React.ComponentPropsWithoutRef<typeof CollapsiblePrimitive.CollapsibleContent>25>(({ className, ...props }, ref) => (26 <CollapsiblePrimitive.CollapsibleContent27 ref={ref}28 className={cn(29 'overflow-hidden transition data-[state=closed]:animate-collapsible-up data-[state=open]:animate-collapsible-down',30 className31 )}32 {...props}33 />34))35CollapsibleContent.displayName = CollapsiblePrimitive.CollapsibleContent.displayName3637export { Collapsible, CollapsibleTrigger, CollapsibleContent }
What it pulls in
npm packages
Other registry items
Files it writes
More from boldkit
All 94 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Accordionaccordion | boldkit | Components | Free | 2 deps | |
| Alertalert | boldkit | Components | Free | 2 deps | |
| Alert Dialogalert-dialog | boldkit | Components | Free | 1 dep | |
| ASCII Shapesascii-shapes | boldkit | Components | Free | no deps | |
| Aspect Ratioaspect-ratio | boldkit | Components | Free | 1 dep | |
| Avataravatar | boldkit | Components | Free | 1 dep | |
| Badgebadge | boldkit | Components | Free | 1 dep | |
| Breadcrumbbreadcrumb | boldkit | Components | Free | 2 deps |
