payment-backoffice/app/features/dashboard/sidebar/SidebarLink.interfaces.ts

7 lines
126 B
TypeScript

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