import { Download, Settings, SquarePlay } from "lucide-react"; import { RoutesObj } from "@/types/route"; export const AllRoutes: Array = [ { title: "Downloader", url: "/", icon: Download, }, { title: "Library", url: "/library", icon: SquarePlay, }, { title: "Settings", url: "/settings", icon: Settings, } ];