1. framework components
  2. accordion

Accordion

Divide content into collapsible sections.



Controlled

Use the open and onOpenChange props to control the state.

Content for item 1

Multiple

Allow multiple accordion items to stay open at once using the multiple prop.

Collapsible

Allow closing all items when one is open using the collapsible prop.

Indicator

Add a custom indicator to accordion triggers.

Orientation

Render the accordion vertically or horizontally using the orientation prop.

Dir

Set the text direction (ltr or rtl) using the dir prop.

API Reference

Root

txt
flex gap-2 w-full data-[orientation=vertical]:flex-col data-[orientation=horizontal]:flex-row
PropDefaultType
idsPartial<{ root: string; item: (value: string) => string; itemContent: (value: string) => string; itemTrigger: (value: string) => string; }> | undefined

The ids of the elements in the accordion. Useful for composition.

multiplefalseboolean | undefined

Whether multiple accordion items can be expanded at the same time.

collapsiblefalseboolean | undefined

Whether an accordion item can be closed after it has been expanded.

valuestring[] | undefined

The controlled value of the expanded accordion items.

defaultValuestring[] | undefined

The initial value of the expanded accordion items. Use when you don't need to control the value of the accordion.

disabledboolean | undefined

Whether the accordion items are disabled

onValueChange((details: ValueChangeDetails) => void) | undefined

The callback fired when the state of expanded/collapsed accordion items changes.

onFocusChange((details: FocusChangeDetails) => void) | undefined

The callback fired when the focused accordion item changes.

orientation"vertical""horizontal" | "vertical" | undefined

The orientation of the accordion items.

dir"ltr""ltr" | "rtl" | undefined

The document's text/writing direction.

getRootNode(() => ShadowRoot | Node | Document) | undefined

A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron.

element((attributes: HTMLAttributes<"div">) => Element) | undefined

Render the element yourself

Provider

PropDefaultType
valueAccordionApi<PropTypes>

element((attributes: HTMLAttributes<"div">) => Element) | undefined

Render the element yourself

Context

PropDefaultType
children(accordion: AccordionApi<PropTypes>) => ReactNode

Item

txt
flex gap-2 data-[orientation=vertical]:flex-col data-[orientation=horizontal]:flex-row
PropDefaultType
valuestring

The value of the accordion item.

disabledboolean | undefined

Whether the accordion item is disabled.

childrenReactNode

element((attributes: HTMLAttributes<"div">) => Element) | undefined

Render the element yourself

ItemTrigger

txt
px-4 py-2 rounded-base w-full text-start hover:preset-tonal-primary
PropDefaultType
childrenReactNode

element((attributes: HTMLAttributes<"button">) => Element) | undefined

Render the element yourself

ItemIndicator

PropDefaultType
childrenReactNode

element((attributes: HTMLAttributes<"div">) => Element) | undefined

Render the element yourself

ItemContent

txt
py-2 px-4
PropDefaultType
childrenReactNode

element((attributes: HTMLAttributes<"div">) => Element) | undefined

Render the element yourself

View page on GitHub