import { PixelAccordion } from '../navigation'; const SAMPLE_ITEMS = [ { id: 'overview', title: 'Overview', content: 'Introductory section that opens by default.', }, { id: 'details', title: 'Details', content: 'Secondary section with extended copy.', }, { id: 'faq', title: 'FAQ', content: 'Common questions and short answers.', }, ]; export function Default() { return ; } export function CollapsedByDefault() { return ; } export function AllowMultiple() { return ; } export function Surfaces() { return (
); } export function RichContent() { return (
  • Added accordion keyboard wiring
  • Surface-aware typography
  • Optional multi-open behaviour
  • ), }, { id: 'migration', title: 'Migration notes', content: (

    Pass collapsedByDefault to keep every item closed on first render.

    ), }, ]} /> ); }