Skip to content

Commit 9f32afc

Browse files
committed
fix: width and height switched up in search icon
1 parent f85a955 commit 9f32afc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/SampleApp/src/icons/Search.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const Search: React.FC<IconProps> = ({ fill, height = 24, scale = 1, widt
1212
<Svg
1313
fill='none'
1414
height={height * scale}
15-
viewBox={`0 0 ${height * scale} ${vbWidth}`}
15+
viewBox={`0 0 ${vbWidth} ${height * scale}`}
1616
width={vbWidth}
1717
>
1818
<G transform={I18nManager.isRTL ? `matrix(-1 0 0 1 ${vbWidth} 0)` : undefined}>

0 commit comments

Comments
 (0)