8 lines
127 B
TypeScript
8 lines
127 B
TypeScript
import { ElementType } from "react";
|
|
|
|
export interface ISidebarLink {
|
|
title: string;
|
|
path: string;
|
|
icon?: ElementType;
|
|
}
|