feat: update icons in WorkbenchRail component for conversations and tickets

This commit is contained in:
mlogclub
2026-06-13 12:41:29 +08:00
parent ef959295fc
commit 2f57c1bc01
+3 -3
View File
@@ -1,6 +1,6 @@
"use client" "use client"
import { FileTextIcon, MessageSquareTextIcon } from "lucide-react" import { MessagesSquareIcon, TicketCheckIcon } from "lucide-react"
import Link from "next/link" import Link from "next/link"
import { usePathname } from "next/navigation" import { usePathname } from "next/navigation"
@@ -18,13 +18,13 @@ const workbenchRailItems = [
key: "conversations", key: "conversations",
titleKey: "nav.conversations", titleKey: "nav.conversations",
href: "/workbench", href: "/workbench",
icon: MessageSquareTextIcon, icon: MessagesSquareIcon,
}, },
{ {
key: "tickets", key: "tickets",
titleKey: "nav.tickets", titleKey: "nav.tickets",
href: "/workbench/tickets", href: "/workbench/tickets",
icon: FileTextIcon, icon: TicketCheckIcon,
}, },
] ]