@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
21 lines (20 loc) • 526 B
TypeScript
import React from "react";
export interface SidebarLink {
label: string;
icon: React.ReactNode;
path: string;
notifications?: number;
}
interface SidebarSplitProps {
links: SidebarLink[];
compact?: boolean;
sticky?: boolean;
logo?: React.ReactNode;
hoverExpand?: boolean;
activePath?: string;
onSelect?: (path: string) => void;
toggleOpenIcon?: React.ReactNode;
toggleCloseIcon?: React.ReactNode;
}
export declare const SidebarSplit: React.FC<SidebarSplitProps>;
export {};