UNPKG

@etsoo/toolpad

Version:

Dashboard framework extention based on Toolpad Core

17 lines (16 loc) 639 B
import type { Navigation } from "../AppProvider"; interface DashboardSidebarSubNavigationProps { subNavigation: Navigation; basePath?: string; depth?: number; onLinkClick: () => void; isMini?: boolean; isFullyExpanded?: boolean; hasDrawerTransitions?: boolean; selectedItemId: string; } /** * @ignore - internal component. */ declare function DashboardSidebarSubNavigation({ subNavigation, basePath, depth, onLinkClick, isMini, isFullyExpanded, hasDrawerTransitions, selectedItemId }: DashboardSidebarSubNavigationProps): import("react/jsx-runtime").JSX.Element; export { DashboardSidebarSubNavigation };