payment-backoffice/app/features/dashboard/sidebar/SidebarLink.interfaces.ts
2025-11-04 19:16:16 +01:00

9 lines
165 B
TypeScript

import { ElementType } from "react";
export interface ISidebarLink {
title: string;
path: string;
icon?: ElementType | string;
children?: ISidebarLink[];
}