Accordion
A vertically stacked set of interactive headings that each reveal a section of content.
Installation
Usage
<Accordion defaultValue=["item-1"]>
<Accordion.Item value="item-1">
<Accordion.Trigger> {"Is it accessible?"->React.string} </Accordion.Trigger>
<Accordion.Content>
{"Yes. It adheres to the WAI-ARIA design pattern."->React.string}
</Accordion.Content>
</Accordion.Item>
</Accordion>Examples
Basic
A basic accordion that shows one item at a time. The first item is open by default.
Multiple
Use the multiple prop to allow multiple items to be open at the same time.
Disabled
Use the disabled prop on AccordionItem to disable individual items.
Borders
Add border to the Accordion and border-b last:border-b-0 to the AccordionItem to add borders to the items.
Card
Wrap the Accordion in a Card component.
API Reference
See the Base UI documentation for more information.