> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify-han-update-changelogs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Accordions

> A dropdown component for toggling content

<Accordion title="I am an Accordion.">
  You can put any content in here. Check out
  [AccordionGroup](/content/components/accordion-groups) if you want to group
  multiple Accordions into a single display.
</Accordion>

<RequestExample>
  ```jsx Accordion Example
  <Accordion title="I am an Accordion.">
    You can put any content in here.
  </Accordion>
  ```
</RequestExample>

## Props

<ResponseField name="title" type="string" required>
  Title in the Accordion preview.
</ResponseField>

<ResponseField name="description" type="string">
  Detail below the title in the Accordion preview.
</ResponseField>

<ResponseField name="defaultOpen" type="boolean" default="false">
  Whether the Accordion is open by default.
</ResponseField>

<ResponseField name="icon" type="string or svg">
  A [Font Awesome icon](https://fontawesome.com/icons) or SVG code
</ResponseField>

<ResponseField name="iconType" type="string">
  One of "regular", "solid", "light", "thin", "sharp-solid", "duotone", or
  "brands"
</ResponseField>
