flexlayout-react
    Preparing search index...

    Interface IIcons

    interface IIcons {
        activeTabset?: ReactNode | ((tabSetNode: TabSetNode) => ReactNode);
        close?: ReactNode | ((tabNode: TabNode) => ReactNode);
        closeFloatPopout?: ReactNode | (() => ReactNode);
        closeTabset?: ReactNode | ((tabSetNode: TabSetNode) => ReactNode);
        dragToDock?: ReactNode;
        edgeArrow?: ReactNode;
        maximize?: ReactNode | ((tabSetNode: TabSetNode) => ReactNode);
        more?:
            | ReactNode
            | (
                (
                    tabSetNode: TabSetNode | BorderNode,
                    hiddenTabs: { index: number; node: TabNode }[],
                ) => ReactNode
            );
        pin?: ReactNode | ((tabNode: TabNode) => ReactNode);
        popout?: ReactNode | ((tabNode: TabNode) => ReactNode);
        popoutFloat?: ReactNode | ((tabNode: TabNode) => ReactNode);
        popoutFloatWindow?: ReactNode;
        restore?: ReactNode | ((tabSetNode: TabSetNode) => ReactNode);
    }
    Index
    activeTabset?: ReactNode | ((tabSetNode: TabSetNode) => ReactNode)

    the active tabset indicator shown when the tabset is active

    close?: ReactNode | ((tabNode: TabNode) => ReactNode)

    the close button on a tab

    closeFloatPopout?: ReactNode | (() => ReactNode)

    the button that closes a floating panel

    closeTabset?: ReactNode | ((tabSetNode: TabSetNode) => ReactNode)

    the close button in the tabset toolbar

    dragToDock?: ReactNode

    the drag handle in the floating panel header that docks the panel into the main layout

    edgeArrow?: ReactNode

    the arrow shown on the edge dock indicators while dragging

    maximize?: ReactNode | ((tabSetNode: TabSetNode) => ReactNode)

    the toolbar button that maximizes the tabset

    more?:
        | ReactNode
        | (
            (
                tabSetNode: TabSetNode | BorderNode,
                hiddenTabs: { index: number; node: TabNode }[],
            ) => ReactNode
        )

    the overflow button shown when tabs are hidden in the tabstrip

    pin?: ReactNode | ((tabNode: TabNode) => ReactNode)

    the pin indicator on a pinned tab

    popout?: ReactNode | ((tabNode: TabNode) => ReactNode)

    the toolbar button that pops the selected tab out into a native window

    popoutFloat?: ReactNode | ((tabNode: TabNode) => ReactNode)

    the toolbar button that pops the selected tab out into a floating panel

    popoutFloatWindow?: ReactNode

    the button in the floating panel header that pops the panel out into a native window

    restore?: ReactNode | ((tabSetNode: TabSetNode) => ReactNode)

    the toolbar button that restores a maximized tabset