import React from 'react' import {StyleProp, TextStyle, ViewStyle} from 'react-native' import Svg, {Path, Rect, Line, Ellipse} from 'react-native-svg' export function GridIcon({ style, solid, }: { style?: StyleProp solid?: boolean }) { const DIM = 4 const ARC = 2 return ( ) } export function GridIconSolid({style}: {style?: StyleProp}) { return } export function HomeIcon({ style, size, strokeWidth = 4, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } export function HomeIconSolid({ style, size, strokeWidth = 4, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } // 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 MagnifyingGlassIcon2Solid({ style, size, strokeWidth = 2, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } // https://github.com/Remix-Design/RemixIcon/blob/master/License export function BellIcon({ style, size, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } // https://github.com/Remix-Design/RemixIcon/blob/master/License export function BellIconSolid({ style, size, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } export function CogIcon({ style, size, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth: number }) { return ( ) } export function CogIconSolid({ 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 MoonIcon({ 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 SunIcon({ 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 UserIcon({ style, size, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) } export function UserIconSolid({ 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 RepostIcon({ style, size = 24, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth: number }) { return ( ) } // Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. export function HeartIcon({ style, size = 24, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth: number }) { return ( ) } // Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. export function HeartIconSolid({ style, size = 24, }: { style?: StyleProp size?: string | number }) { return ( ) } export function UpIcon({ style, size, strokeWidth = 1.3, }: { style?: StyleProp size?: string | number strokeWidth: number }) { return ( ) } export function UpIconSolid({ style, size, }: { style?: StyleProp size?: string | number }) { return ( ) } export function DownIcon({ style, size, }: { style?: StyleProp size?: string | number }) { return ( ) } export function DownIconSolid({ style, size, }: { style?: StyleProp size?: string | number }) { return ( ) } // Copyright (c) 2020 Refactoring UI Inc. // https://github.com/tailwindlabs/heroicons/blob/master/LICENSE export function CommentBottomArrow({ style, size, strokeWidth = 1.3, }: { 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 ( ) } 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 ComposeIcon({ style, size, strokeWidth = 1.5, }: { 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 SquarePlusIcon({ 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 ( ) } export function ListIcon({ style, size, strokeWidth = 1.5, }: { style?: StyleProp size?: string | number strokeWidth?: number }) { return ( ) }