payment-backoffice/payment-iq/interfaces/SidebarLink.interfaces.ts
2025-06-17 21:10:16 +02:00

7 lines
126 B
TypeScript

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