Fix magnify icon (#3292)

* Update icons.tsx

* Update icons.tsx
zio/stable
Minseo Lee 2024-04-04 10:49:14 +09:00 committed by GitHub
parent 7cf22e2047
commit af9b961411
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 7 deletions

View File

@ -141,8 +141,8 @@ export function MagnifyingGlassIcon2({
width={size || 24} width={size || 24}
height={size || 24} height={size || 24}
style={style}> style={style}>
<Ellipse cx="12" cy="11" rx="9" ry="9" /> <Ellipse cx="12" cy="10.5" rx="9" ry="9" />
<Line x1="19" y1="17.3" x2="23.5" y2="21" strokeLinecap="round" /> <Line x1="18.5" y1="17" x2="22" y2="20.5" strokeLinecap="round" />
</Svg> </Svg>
) )
} }
@ -167,14 +167,14 @@ export function MagnifyingGlassIcon2Solid({
style={style}> style={style}>
<Ellipse <Ellipse
cx="12" cx="12"
cy="11" cy="10.5"
rx="7" rx="6.5"
ry="7" ry="6.5"
stroke="none" stroke="none"
fill="currentColor" fill="currentColor"
/> />
<Ellipse cx="12" cy="11" rx="9" ry="9" /> <Ellipse cx="12" cy="10.5" rx="9" ry="9" />
<Line x1="19" y1="17.3" x2="23.5" y2="21" strokeLinecap="round" /> <Line x1="18.5" y1="17" x2="22" y2="20.5" strokeLinecap="round" />
</Svg> </Svg>
) )
} }