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"
import { FileTextIcon, MessageSquareTextIcon } from "lucide-react"
import { MessagesSquareIcon, TicketCheckIcon } from "lucide-react"
import Link from "next/link"
import { usePathname } from "next/navigation"
@@ -18,13 +18,13 @@ const workbenchRailItems = [
key: "conversations",
titleKey: "nav.conversations",
href: "/workbench",
icon: MessageSquareTextIcon,
icon: MessagesSquareIcon,
},
{
key: "tickets",
titleKey: "nav.tickets",
href: "/workbench/tickets",
icon: FileTextIcon,
icon: TicketCheckIcon,
},
]