diff options
author | Ivan Chen <ivan@tagg.id> | 2021-01-21 17:13:21 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-01-21 17:13:21 -0500 |
commit | ad321571af78b5ea58a8e3e35820d5c3cf1c607b (patch) | |
tree | e74cdba25d194cae51086d4278eb7b77093c7609 /src/components/taggs/Tagg.tsx | |
parent | d6714bec669becb4132035ffdf7b9b87e9c6ce7b (diff) |
linting and normalizing tagg icons
Diffstat (limited to 'src/components/taggs/Tagg.tsx')
-rw-r--r-- | src/components/taggs/Tagg.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/taggs/Tagg.tsx b/src/components/taggs/Tagg.tsx index 82ac07df..5fa8b395 100644 --- a/src/components/taggs/Tagg.tsx +++ b/src/components/taggs/Tagg.tsx @@ -22,6 +22,7 @@ import { ERROR_UNABLE_TO_FIND_PROFILE, SUCCESS_LINK, } from '../../constants/strings'; +import {normalize} from '../../utils'; interface TaggProps { social: string; @@ -165,7 +166,7 @@ const styles = StyleSheet.create({ justifyContent: 'space-between', alignItems: 'center', marginHorizontal: 15, - height: 90, + height: normalize(90), }, iconTap: { justifyContent: 'center', |