payment-backoffice/app/features/dashboard/sidebar/SidebarLink.interfaces.ts
2025-07-02 11:00:41 +02:00

8 lines
127 B
TypeScript

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