Accordion
MoleculeVertically stacked, collapsible content panels. Single-open by default, or `allowMultiple` for independent panels. Fully keyboard accessible via native `<button>` disclosure headers.
Orders ship within 2 business days via standard carrier.
Free returns within 30 days of delivery, unworn and with tags.
Covered by a 1-year limited manufacturer warranty.
<Accordion
items={[
{ id: 'shipping', title: 'Shipping', content: '...' },
{ id: 'returns', title: 'Returns', content: '...' },
{ id: 'warranty', title: 'Warranty', content: '...', disabled: true },
]}
defaultOpenIds={['shipping']}
/>Content for section A.
Content for section B.
<Accordion
allowMultiple
items={[{ id: 'a', title: 'Section A', content: '...' }, { id: 'b', title: 'Section B', content: '...' }]}
defaultOpenIds={['a', 'b']}
/>