allowMultiple | boolean | Allow multiple accordion items to expand at once. |
initialEntered | boolean | Make all accordion items expanded when initially mounted. |
mountOnEnter | boolean | Lazily mount children of accordion items until they are expanded. Use this option if you don't need to server-side render accordion item contents. |
unmountOnExit | boolean | Unmount children of accordion items after they are collapsed. |
transition | View on GitHub | Enable or disable transition. Accept a single boolean value or each individual transition stage in an object. |
transitionTimeout | View on GitHub | Set transition duration. Accept a single number or individual "enter" or "exit" stage in an object. |
onStateChange | (event: { key: ItemKey; current: TransitionState }) => void | Event to notify state changes in any accordion items. |