UNPKG

xtreme-ui

Version:

Collection of reusable components that can be used in web projects

15 lines 420 B
import { ElementType, ReactNode } from '../../../../node_modules/.pnpm/react@19.2.3/node_modules/react'; export type TNavigationProps = { className?: string; children?: ReactNode; as?: ElementType; hrefPropName?: string; pathname: string; routes: TNavigationRoute[]; }; export type TNavigationRoute = { name: string; href: string; icon?: string; }; //# sourceMappingURL=types.d.ts.map