14 lines
287 B
TypeScript
14 lines
287 B
TypeScript
import { LucideIcon } from "lucide-react";
|
|
|
|
export interface NavigationItem {
|
|
id: string;
|
|
label: string;
|
|
icon: LucideIcon;
|
|
path?: string;
|
|
for_admin?: boolean;
|
|
onClick?: () => void;
|
|
nestedItems?: NavigationItem[];
|
|
}
|
|
|
|
export type NavigationSection = "primary" | "secondary";
|