import React from 'react' import {StyleProp, ViewStyle} from 'react-native' import Svg, {Path} from 'react-native-svg' export function GridIcon({style}: {style?: StyleProp}) { const DIM = 4 const ARC = 2 return ( ) } export function HomeIcon({ style, size, }: { style?: StyleProp size?: string | number }) { return ( ) } // Copyright (c) 2020 Refactoring UI Inc. // https://github.com/tailwindlabs/heroicons/blob/master/LICENSE export function MangifyingGlassIcon({ style, size, }: { style?: StyleProp size?: string | number }) { return ( ) } // https://github.com/Remix-Design/RemixIcon/blob/master/License export function BellIcon({ style, size, }: { style?: StyleProp size?: string | 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 UpIcon({ style, size, }: { style?: StyleProp size?: string | 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 ( ) }