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}: {style?: StyleProp}) { 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}: {style?: StyleProp}) { return ( ) }