fix(settings): update chat channel icons to Play/Square and SendHorizontal

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
xintaofei
2026-04-07 12:58:12 +08:00
parent 94946bbe0c
commit 0401319281
2 changed files with 6 additions and 6 deletions

View File

@@ -5,9 +5,9 @@ import {
Loader2, Loader2,
MessageCircle, MessageCircle,
Pencil, Pencil,
Play,
Plus, Plus,
Power, Square,
PowerOff,
Trash2, Trash2,
Zap, Zap,
} from "lucide-react" } from "lucide-react"
@@ -290,7 +290,7 @@ export function ChannelListTab() {
{isLoading ? ( {isLoading ? (
<Loader2 className="h-3.5 w-3.5 animate-spin" /> <Loader2 className="h-3.5 w-3.5 animate-spin" />
) : ( ) : (
<PowerOff className="h-3.5 w-3.5" /> <Square className="h-3.5 w-3.5" />
)} )}
</Button> </Button>
) : ( ) : (
@@ -304,7 +304,7 @@ export function ChannelListTab() {
{isLoading ? ( {isLoading ? (
<Loader2 className="h-3.5 w-3.5 animate-spin" /> <Loader2 className="h-3.5 w-3.5 animate-spin" />
) : ( ) : (
<Power className="h-3.5 w-3.5" /> <Play className="h-3.5 w-3.5" />
)} )}
</Button> </Button>
)} )}

View File

@@ -12,7 +12,7 @@ import {
GitBranch, GitBranch,
Globe, Globe,
Keyboard, Keyboard,
BotMessageSquare, SendHorizontal,
Palette, Palette,
PlugZap, PlugZap,
Server, Server,
@@ -82,7 +82,7 @@ const SETTINGS_NAV_ITEMS: SettingsNavItem[] = [
{ {
href: "/settings/chat-channels", href: "/settings/chat-channels",
labelKey: "chat_channels", labelKey: "chat_channels",
icon: BotMessageSquare, icon: SendHorizontal,
}, },
{ {
href: "/settings/web-service", href: "/settings/web-service",