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