payment-backoffice/interfaces/SidebarLink.interfaces.ts
Mitchell Magro 83c27dc11c First commit
2025-06-18 15:38:38 +02:00

7 lines
126 B
TypeScript

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