mirror of
https://github.com/neosubhamoy/neodlp.git
synced 2025-12-20 05:29:33 +05:30
8 lines
251 B
TypeScript
8 lines
251 B
TypeScript
import { LucideProps } from "lucide-react";
|
|
|
|
export interface RoutesObj {
|
|
title: string;
|
|
url: string;
|
|
icon: React.ForwardRefExoticComponent<Omit<LucideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
starts_with?: boolean | null;
|
|
} |