UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

17 lines (16 loc) 414 B
import { Icons } from '@/components/icons'; export interface NavItem { title: string; href?: string; disabled?: boolean; external?: boolean; icon?: keyof typeof Icons; label?: string; } export interface NavItemWithChildren extends NavItem { items: NavItemWithChildren[]; } export interface MainNavItem extends NavItem { } export interface SidebarNavItem extends NavItemWithChildren { }