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.
14 lines • 371 B
TypeScript
import { SvgLinkType } from "./SvgLinkType";
export type NavLinkType = {
label?: string;
href?: string;
svgLogoIcon?: SvgLinkType;
title?: string;
iconLeft?: string;
iconRight?: string;
emoji?: string;
subNav?: NavLinkType[];
onClick?: (e: React.MouseEvent) => void;
className?: string;
};
//# sourceMappingURL=NavLinkType.d.ts.map