src/components/sidebar-stack/sidebar-link.tsximport type { ReactNode } from 'react'export interface SidebarLinkProps {children: ReactNodecomponentId: stringtitle: stringclassName?: string/** Show title immediately instead of fading in on scroll */showTitleImmediately?: boolean}/*** A declarative link component for sidebar navigation.* Does not use hooks - works with SidebarClickHandler via event delegation.*/export function SidebarLink({children,componentId,title,className = '',
Showing the first 20 lines.
Get full code