8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
export interface MenuItem {
|
|
title: string;
|
|
url: string;
|
|
description?: string;
|
|
icon?: React.ComponentType<{ className?: string }>;
|
|
items?: MenuItem[];
|
|
}
|