Skip to content

Commit 77c2be2

Browse files
author
pompurin404
committed
adjust icon style
1 parent 4d2678b commit 77c2be2

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/renderer/src/components/sider/dns-card.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Button, Card, CardBody, CardFooter } from '@nextui-org/react'
22
import { useControledMihomoConfig } from '@renderer/hooks/use-controled-mihomo-config'
33
import BorderSwitch from '@renderer/components/base/border-swtich'
4-
import { MdOutlineDns } from 'react-icons/md'
4+
import { LuServer } from 'react-icons/lu'
55
import { useLocation, useNavigate } from 'react-router-dom'
66
import { patchMihomoConfig } from '@renderer/utils/ipc'
77

@@ -32,7 +32,7 @@ const DNSCard: React.FC = () => {
3232
variant="flat"
3333
color="default"
3434
>
35-
<MdOutlineDns
35+
<LuServer
3636
className={`${match ? 'text-white' : 'text-foreground'} text-[24px] font-bold`}
3737
/>
3838
</Button>

src/renderer/src/components/sider/log-card.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const LogCard: React.FC = () => {
2222
>
2323
<IoJournal
2424
color="default"
25-
className={`${match ? 'text-white' : 'text-foreground'} text-[20px] font-bold`}
25+
className={`${match ? 'text-white' : 'text-foreground'} text-[24px] font-bold`}
2626
/>
2727
</Button>
2828
</div>

src/renderer/src/components/sider/rule-card.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const RuleCard: React.FC = () => {
2828
>
2929
<MdOutlineAltRoute
3030
color="default"
31-
className={`${match ? 'text-white' : 'text-foreground'} text-[20px]`}
31+
className={`${match ? 'text-white' : 'text-foreground'} text-[24px]`}
3232
/>
3333
</Button>
3434
<Chip

src/renderer/src/components/sider/sniff-card.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Button, Card, CardBody, CardFooter } from '@nextui-org/react'
22
import BorderSwitch from '@renderer/components/base/border-swtich'
3-
import { GrDomain } from 'react-icons/gr'
3+
import { RiScan2Fill } from 'react-icons/ri'
44
import { useLocation, useNavigate } from 'react-router-dom'
55
import { patchMihomoConfig } from '@renderer/utils/ipc'
66
import { useControledMihomoConfig } from '@renderer/hooks/use-controled-mihomo-config'
@@ -32,7 +32,7 @@ const SniffCard: React.FC = () => {
3232
variant="flat"
3333
color="default"
3434
>
35-
<GrDomain
35+
<RiScan2Fill
3636
color="default"
3737
className={`${match ? 'text-white' : 'text-foreground'} text-[24px]`}
3838
/>

src/renderer/src/components/sider/test-card.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const TestCard: React.FC = () => {
2424
>
2525
<TbWorldCheck
2626
color="default"
27-
className={`${match ? 'text-white' : 'text-foreground'} text-[20px] font-bold`}
27+
className={`${match ? 'text-white' : 'text-foreground'} text-[24px] font-bold`}
2828
/>
2929
</Button>
3030
</div>

0 commit comments

Comments
 (0)