2025-06-29 08:49:58 +02:00

7 lines
126 B
TypeScript

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