UNPKG

uiinfinity-components

Version:

Beautiful UI components with smooth animations and 3D effects

18 lines 435 B
import React from 'react'; interface NavigationItem { id: string; label: string; color: string; subItems?: { label: string; onClick?: () => void; }[]; onClick?: () => void; } interface QuantumPortalNavProps { items: NavigationItem[]; className?: string; } export declare const QuantumPortalNav: React.FC<QuantumPortalNavProps>; export {}; //# sourceMappingURL=quantum-portal-nav.d.ts.map