import React from 'react' import {StyleProp, TextStyle, ViewStyle} from 'react-native' import Svg, {Ellipse, Line, Path, Rect} from 'react-native-svg' // Copyright (c) 2020 Refactoring UI Inc. // https://github.com/tailwindlabs/heroicons/blob/master/LICENSE export function MagnifyingGlassIcon({ style, size, strokeWidth = 2, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } export function MagnifyingGlassIcon2({ style, size, strokeWidth = 2, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } export function CogIcon({ style, size, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth: number }) { return ( ) } // Copyright (c) 2020 Refactoring UI Inc. // https://github.com/tailwindlabs/heroicons/blob/master/LICENSE export function UserGroupIcon({ style, size, }: { style?: StyleProp size?: string | number }) { return ( ) } export function SquareIcon({ style, size, strokeWidth = 1.3, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } export function RectWideIcon({ style, size, strokeWidth = 1.3, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } export function RectTallIcon({ style, size, strokeWidth = 1.3, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } export function ComposeIcon2({ style, size, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } export function InfoCircleIcon({ style, size, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } export function HandIcon({ style, size, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } export function HashtagIcon({ style, size, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } // Copyright (c) 2020 Refactoring UI Inc. // https://github.com/tailwindlabs/heroicons/blob/master/LICENSE export function ShieldExclamation({ style, size, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { let color = 'currentColor' if ( style && typeof style === 'object' && 'color' in style && typeof style.color === 'string' ) { color = style.color } return ( ) }