import { css } from '@remix-run/ui' import { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from '@remix-run/ui/accordion' import { theme } from '@remix-run/ui/theme' /** * @name Accordion Overview * @description A single-open disclosure list that keeps settings, billing, or notification rules in one calm section. * @layout center * @order 1 */ export default function Example() { return () => ( Account defaults

Keep billing contacts, email summaries, and workspace naming rules in one calm disclosure list without adding another card layer.

Billing schedule

Review invoice timing, payment methods, and renewal reminders with the same spacing and typography used elsewhere in the system.

Notification rules

Use single mode when only one details panel should stay open at a time in a compact settings or details view.

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