diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/icons.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/icons.tsx b/src/lib/icons.tsx index 6e0be9d0a..4bea1ebef 100644 --- a/src/lib/icons.tsx +++ b/src/lib/icons.tsx @@ -7,17 +7,19 @@ export function MagnifyingGlassIcon({ style, size, strokeWidth = 2, + color = 'currentColor', }: { style?: StyleProp<ViewStyle> size?: string | number strokeWidth?: number + color?: string }) { return ( <Svg fill="none" viewBox="0 0 24 24" strokeWidth={strokeWidth} - stroke="currentColor" + stroke={color} width={size || 24} height={size || 24} style={style}> |