@konstructio/ui
Version:
A set of reusable and customizable React components built for konstruct.io
6 lines (5 loc) • 382 B
TypeScript
import { SidebarMode } from '../contexts/SidebarContext';
export type SidebarModeProp = SidebarMode | 'auto';
export declare const DEFAULT_EXPANDED_BREAKPOINT = 1024;
export declare const DEFAULT_DRAWER_BREAKPOINT = 640;
export declare const useSidebarMode: (mode?: SidebarModeProp, expandedBreakpoint?: number, drawerBreakpoint?: number, initialMode?: SidebarMode) => SidebarMode;