nexpi-ui
Version:
An elegant and minimalist Next.js 14 component library
17 lines (16 loc) • 501 B
TypeScript
import React from 'react';
interface SectionMenuProps {
style?: React.CSSProperties;
NavItems: {
name: string;
path: string;
}[] | null | undefined;
title?: string;
}
declare const SectionMenu: ({ style, NavItems, title }: SectionMenuProps) => React.JSX.Element;
declare const getChildSection: (children: React.ReactNode, typeName: React.ElementType) => {
name: any;
path: string;
}[] | null | undefined;
export default SectionMenu;
export { getChildSection };