Accordion

A versatile UI component for creating collapsible content sections.

Usage Example

Welcome to the Accordion component! This section is open by default.

The Accordion is great for organizing content in a compact way.

  • Collapsible sections
  • Customizable max height
  • Animated transitions
  • Accessible design

This item has a custom button background and animation duration.

You can easily adjust colors, timing, and other properties.

AccordionContainer

The AccordionContainer wraps all AccordionItem components and manages their behavior.

PropTypeDefaultDescription
openSingle
Boolean
trueIf true, only one accordion item can be open at a time.
class
String
undefinedAdditional CSS classes to apply to the container.

AccordionItem

The AccordionItem represents an individual section in the accordion.

The following table lists the available props for the Accordion component:

PropTypeDefaultDescription
open
Boolean
falseIf true, the accordion item is open by default.
maxHeight
Number
300The maximum height of the content area when open.
duration
Number
0.3The duration of the open/close animation in seconds.
name
String
requiredA unique identifier for the accordion item.
buttonClass
String
undefinedAdditional CSS classes to apply to the accordion button.

Slots

You can use slots to customize the buttons and items content of the Accordion.

SlotDescription
triggerContent for the accordion item's header/trigger.
defaultContent for the expandable section of the accordion item.

Best Practices

  1. Provide unique index props for each AccordionItem.
  2. Use clear, concise headers in the trigger slot.
  3. Consider the maxHeight prop to manage long content.
  4. Adjust the duration prop for optimal animation speed.
  5. Use openSingle on AccordionContainer to control simultaneous open sections.

Accessibility

The Accordion components support keyboard navigation and manage ARIA attributes automatically.

Customization

You can customize the Accordion's appearance by:

  • Applying custom CSS classes
  • Adjusting the buttonBackground prop
  • Using slots for complex content

For more examples and advanced usage, refer to the live demo at the top of this page.