diff options
author | Ivan Chen <ivan@tagg.id> | 2021-02-20 12:01:00 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-02-20 12:01:00 -0500 |
commit | a59eee6d4b95ef16e18321bb48072af16f4018dd (patch) | |
tree | 4fc67ad8eb9c6ef274e3aa8cb8d1e6f6f0d50856 /src | |
parent | f099df4589515da84a62c16d284bdee058ea5454 (diff) |
fixed normalize import
Diffstat (limited to 'src')
-rw-r--r-- | src/components/common/GenericMoreInfoDrawer.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/common/GenericMoreInfoDrawer.tsx b/src/components/common/GenericMoreInfoDrawer.tsx index b91c38c8..ff32a464 100644 --- a/src/components/common/GenericMoreInfoDrawer.tsx +++ b/src/components/common/GenericMoreInfoDrawer.tsx @@ -8,11 +8,10 @@ import { ViewProps, ViewStyle, } from 'react-native'; -import { normalize } from 'react-native-elements'; import {useSafeAreaInsets} from 'react-native-safe-area-context'; import {BottomDrawer} from '.'; import {TAGG_LIGHT_BLUE} from '../../constants'; -import {SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils'; +import {normalize, SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils'; // conforms the JSX onPress attribute type type OnPressHandler = (event: GestureResponderEvent) => void; |