geoview-core - v2.2.0
    Preparing search index...

    Interface AccordionProps

    Configuration properties for the Accordion component.

    interface AccordionProps {
        className: string;
        defaultExpanded: boolean;
        id: string;
        items: AccordionItem[];
        showLoadingIcon: boolean;
        sx: CSSProperties;
    }
    Index

    Properties

    className: string

    CSS class applied to each accordion section for custom styling

    defaultExpanded: boolean

    Initial expanded state for all accordion sections on mount

    id: string

    Unique identifier for the accordion container (auto-generated if omitted)

    items: AccordionItem[]

    Array of collapsible sections with title and content

    showLoadingIcon: boolean

    Display rotating loading icon during open/close transitions for async operations

    sx: CSSProperties

    MUI theme-compatible styles applied to accordion container