asafarim-navlinks
Version:
A versatile React navigation component with unlimited multi-level dropdowns, four alignment options, mobile responsiveness, and customizable styling. Perfect for modern web applications.
20 lines • 612 B
TypeScript
import React from 'react';
import { NavLinkType } from './NavLinkType';
type Theme = 'light' | 'dark' | 'auto';
interface NavLinksProps {
links: NavLinkType[];
theme?: Theme;
className?: string;
baseLinkStyle?: React.CSSProperties;
subLinkStyle?: React.CSSProperties;
isRightAligned?: boolean;
isLeftAligned?: boolean;
isTopAligned?: boolean;
isBottomAligned?: boolean;
enableMobileCollapse?: boolean;
showSkipNav?: boolean;
isDemoContext?: boolean;
}
declare const NavLinks: React.FC<NavLinksProps>;
export default NavLinks;
//# sourceMappingURL=NavLinks.d.ts.map