Skip to main content
Accordions allow users to expand and collapse content sections. Use accordions for progressive disclosure and to organize information.

Single accordion

You can put any content in here, including other components, like code:
HelloWorld.java
Accordion example

Accordion Groups

Group related accordions together using <AccordionGroup>. This creates a cohesive section of accordions that can be individually expanded or collapsed.
You can put other components inside Accordions.
HelloWorld.java
Add icons to make accordions more visually distinct and scannable.
Keep related content organized into groups.
Accordion Group Example

Properties

string
required
Title in the Accordion preview.
string
Detail below the title in the Accordion preview.
boolean
default:"false"
Whether the Accordion is open by default.
string
The icon to display.Options:
  • Font Awesome icon name
  • Lucide icon name
  • JSX-compatible SVG code wrapped in curly braces
  • URL to an externally hosted icon
  • Path to an icon file in your project
For custom SVG icons:
  1. Convert your SVG using the SVGR converter.
  2. Paste your SVG code into the SVG input field.
  3. Copy the complete <svg>...</svg> element from the JSX output field.
  4. Wrap the JSX-compatible SVG code in curly braces: icon={<svg ...> ... </svg>}.
  5. Adjust height and width as needed.
string
The Font Awesome icon style. Only used with Font Awesome icons.Options: regular, solid, light, thin, sharp-solid, duotone, brands.