Accordion
Data Display
macOS disclosure group collapsible tree items.
Installation
$npx shadcn-macos@latest add accordion
Examples
FileVault secures data on your Mac by encrypting its disk.
Props
<Accordion />| Prop | Type | Default | Description |
|---|---|---|---|
| items* | Array<{ id: string; title: string; icon?: React.ReactNode; content: React.ReactNode }> | — | Array of collapsible accordion items. |
| defaultOpenId | string | — | ID of the item that is opened by default on initial mount. |
| allowMultiple | boolean | false | Whether multiple accordion items can be open concurrently. |
| className | string | — | Custom styling classes. |