nexpi-ui
Version:
An elegant and minimalist Next.js 14 component library
11 lines (10 loc) • 327 B
TypeScript
import React from 'react';
import { NavItem } from './types';
interface SideBarProps {
logoPath?: string;
style?: React.CSSProperties;
NavItems: NavItem[];
children?: React.ReactNode;
}
declare const MenuBar: ({ style, NavItems, children, logoPath }: SideBarProps) => React.JSX.Element;
export default MenuBar;