import { css } from '@remix-run/ui' import { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from '@remix-run/ui/accordion' import { theme } from '@remix-run/ui/theme' /** * @order 2 * @name Accordion Multiple Open * @description Multiple mode allows several sections to stay open simultaneously, useful for operational checklists and dashboards. * @layout center */ export default function Example() { return () => ( API status checks

Multiple mode works well for operational checklists and dashboards where several sections often need to stay open together.

Access control sync

This section is intentionally disabled to show how one unavailable item should read inside an otherwise active list.

Alert routing

Disabled items should feel clearly unavailable without changing the overall visual model of the disclosure list.

) } const bodyTextCss = css({ margin: 0, fontSize: theme.fontSize.sm, lineHeight: theme.lineHeight.relaxed, color: theme.colors.text.secondary, })