Skip to content

Commit

Permalink
modify
Browse files Browse the repository at this point in the history
  • Loading branch information
xishang0128 committed Aug 6, 2024
1 parent 841453b commit 720637e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/renderer/src/components/sider/proxy-card.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Button, Card, CardBody, CardFooter, Chip } from '@nextui-org/react'
import { mihomoProxies } from '@renderer/utils/ipc'
import { useMemo } from 'react'
import { MdTableChart } from 'react-icons/md'
import { LuGroup } from 'react-icons/lu'
import { useLocation, useNavigate } from 'react-router-dom'
import useSWR from 'swr'

Expand Down Expand Up @@ -30,7 +30,7 @@ const ProxyCard: React.FC = () => {
variant="flat"
color="default"
>
<MdTableChart
<LuGroup
className={`${match ? 'text-white' : 'text-foreground'} text-[24px] font-bold`}
/>
</Button>
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/src/components/sider/rule-card.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Button, Card, CardBody, CardFooter, Chip } from '@nextui-org/react'
import { mihomoRules } from '@renderer/utils/ipc'
import { IoGitNetwork } from 'react-icons/io5'
import { MdOutlineAltRoute } from 'react-icons/md'
import { useLocation, useNavigate } from 'react-router-dom'
import useSWR from 'swr'

Expand All @@ -26,7 +26,7 @@ const RuleCard: React.FC = () => {
variant="flat"
color="default"
>
<IoGitNetwork
<MdOutlineAltRoute
color="default"
className={`${match ? 'text-white' : 'text-foreground'} text-[20px]`}
/>
Expand Down

0 comments on commit 720637e

Please sign in to comment.