From 65cc51ea944da48950961ee1f657deca787618da Mon Sep 17 00:00:00 2001 From: kangfenmao Date: Wed, 5 Feb 2025 20:21:26 +0800 Subject: [PATCH] feat: Update VisionIcon from PictureOutlined to EyeOutlined --- src/renderer/src/components/Icons/VisionIcon.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/src/components/Icons/VisionIcon.tsx b/src/renderer/src/components/Icons/VisionIcon.tsx index df678bbf..515cd336 100644 --- a/src/renderer/src/components/Icons/VisionIcon.tsx +++ b/src/renderer/src/components/Icons/VisionIcon.tsx @@ -1,4 +1,4 @@ -import { PictureOutlined } from '@ant-design/icons' +import { EyeOutlined } from '@ant-design/icons' import React, { FC } from 'react' import styled from 'styled-components' @@ -16,7 +16,7 @@ const Container = styled.div` align-items: center; ` -const Icon = styled(PictureOutlined)` +const Icon = styled(EyeOutlined)` color: var(--color-primary); font-size: 15px; margin-right: 6px;