rx-datatable API
    Preparing search index...

    Interface TableIcons

    App-wide (or subtree-wide) defaults for the components in this package, so that individual call sites don't need to configure icons or themes. Provide it once near the root of your app:

     <TableConfig theme={darkTheme}
                  icons={{ expanded: <MyChevronDown/>, collapsed: <MyChevronRight/> }}>
         <App/>
     </TableConfig>
    

    Providers nest: an inner TableConfig overrides only the fields it specifies. Anything not configured falls back to built-in defaults (unicode glyph icons, light theme).

    interface TableIcons {
        collapsed?: ReactNode;
        expanded?: ReactNode;
        sortAscending?: ReactNode;
        sortDescending?: ReactNode;
    }
    Index
    collapsed?: ReactNode

    Icon on the expander button of a collapsed tree item (default: ▸).

    expanded?: ReactNode

    Icon on the expander button of an expanded tree item (default: ▾).

    sortAscending?: ReactNode

    Sort indicator on a column header sorted ascending (default: ▲).

    sortDescending?: ReactNode

    Sort indicator on a column header sorted descending (default: ▼).