diff options
author | Ivan Chen <ivan@thetaggid.com> | 2020-10-08 16:26:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-08 16:26:16 -0400 |
commit | 6e3fe33e5e1d3818ef8bb942c1544581ab8c0688 (patch) | |
tree | 11d86adf5ef56efadf6a1edafdc33fdba20fab80 /src/components/taggs/Tagg.tsx | |
parent | cf0f22d4e86e44efee6ae1d4f23e0642df117b79 (diff) |
[TMA-229] Moments Barebones (#50)
* added react native svg transformation to support svg icons
* finished moments barebones view
* resolved a warning from the svg file
Diffstat (limited to 'src/components/taggs/Tagg.tsx')
-rw-r--r-- | src/components/taggs/Tagg.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/taggs/Tagg.tsx b/src/components/taggs/Tagg.tsx index 9a5ec1e2..341a713a 100644 --- a/src/components/taggs/Tagg.tsx +++ b/src/components/taggs/Tagg.tsx @@ -2,7 +2,7 @@ import {useNavigation} from '@react-navigation/native'; import React from 'react'; import {StyleSheet, TouchableOpacity, View, ViewProps} from 'react-native'; import LinearGradient from 'react-native-linear-gradient'; -import { TAGGS_GRADIENT } from '../../constants'; +import {TAGGS_GRADIENT} from '../../constants'; interface TaggProps extends ViewProps {} |