@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
21 lines (20 loc) • 443 B
TypeScript
import React from "react";
interface SidebarProps {
links: {
label: string;
icon: React.ReactNode;
path: string;
notifications?: number;
}[];
userProfile?: {
name: string;
avatar: string;
onClick: () => void;
};
onLogout?: () => void;
compact?: boolean;
sticky?: boolean;
logo?: boolean;
}
export declare const Sidebar: React.FC<SidebarProps>;
export {};