UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

13 lines (12 loc) 291 B
import React from "react"; interface SidebarEntryProps { icon?: React.ReactNode; label: string; path?: string; count?: number; active?: boolean; compact?: boolean; onClick?: () => void; } export declare const SidebarEntry: React.FC<SidebarEntryProps>; export {};