diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-04-04 10:49:14 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-03 18:49:14 -0700 |
commit | af9b9614115e52fc4ff97540eb42dbd715ddabbb (patch) | |
tree | 29ec638ebab644a59b40f55891247865d8472f44 /src/lib | |
parent | 7cf22e20479f85284dae2f0631bac01bc352efa7 (diff) | |
download | voidsky-af9b9614115e52fc4ff97540eb42dbd715ddabbb.tar.zst |
Fix magnify icon (#3292)
* Update icons.tsx * Update icons.tsx
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/icons.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/icons.tsx b/src/lib/icons.tsx index 7ae88806f..8783682d0 100644 --- a/src/lib/icons.tsx +++ b/src/lib/icons.tsx @@ -141,8 +141,8 @@ export function MagnifyingGlassIcon2({ width={size || 24} height={size || 24} style={style}> - <Ellipse cx="12" cy="11" rx="9" ry="9" /> - <Line x1="19" y1="17.3" x2="23.5" y2="21" strokeLinecap="round" /> + <Ellipse cx="12" cy="10.5" rx="9" ry="9" /> + <Line x1="18.5" y1="17" x2="22" y2="20.5" strokeLinecap="round" /> </Svg> ) } @@ -167,14 +167,14 @@ export function MagnifyingGlassIcon2Solid({ style={style}> <Ellipse cx="12" - cy="11" - rx="7" - ry="7" + cy="10.5" + rx="6.5" + ry="6.5" stroke="none" fill="currentColor" /> - <Ellipse cx="12" cy="11" rx="9" ry="9" /> - <Line x1="19" y1="17.3" x2="23.5" y2="21" strokeLinecap="round" /> + <Ellipse cx="12" cy="10.5" rx="9" ry="9" /> + <Line x1="18.5" y1="17" x2="22" y2="20.5" strokeLinecap="round" /> </Svg> ) } |