@quintype/native-components 2.29.9-beta.0 → 2.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@ import { Linking, View, TouchableOpacity } from 'react-native';
|
|
|
5
5
|
import { AppTheme } from '../../utils';
|
|
6
6
|
import { Text } from '../Text';
|
|
7
7
|
import { styles } from './styles';
|
|
8
|
-
import Icon from "react-native-vector-icons/
|
|
8
|
+
import Icon from "react-native-vector-icons/FontAwesome";
|
|
9
9
|
|
|
10
10
|
export const References = ({
|
|
11
11
|
card, referenceNameTestId, referenceDescTestID, referenceContainerTestID,
|
|
@@ -22,7 +22,7 @@ export const References = ({
|
|
|
22
22
|
<View style={referenceStyles.container} testID={referenceContainerTestID}>
|
|
23
23
|
<View>
|
|
24
24
|
<View style={referenceStyles.topSubContainer}>
|
|
25
|
-
<Icon name={'external-link
|
|
25
|
+
<Icon name={'external-link'} size={FONT_SIZE.h2} style={referenceStyles.iconStyle} testID="referenceStoryIcon" />
|
|
26
26
|
<Text style={referenceStyles.referenceText}>{'REFERENCE'}</Text>
|
|
27
27
|
</View>
|
|
28
28
|
<Text style={referenceStyles.name} testID={referenceNameTestId}>
|
|
@@ -16,7 +16,6 @@ export const styles = (COLORS, FONT_SIZE, FONT_FAMILY) => StyleSheet.create({
|
|
|
16
16
|
},
|
|
17
17
|
name: {
|
|
18
18
|
fontSize: FONT_SIZE.h1,
|
|
19
|
-
fontWeight: 'bold',
|
|
20
19
|
marginTop:15,
|
|
21
20
|
textDecorationLine:'underline',
|
|
22
21
|
lineHeight:24,
|
|
@@ -31,8 +30,8 @@ export const styles = (COLORS, FONT_SIZE, FONT_FAMILY) => StyleSheet.create({
|
|
|
31
30
|
},
|
|
32
31
|
referenceText: {
|
|
33
32
|
marginLeft:5,
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
fontSize: FONT_SIZE.h3,
|
|
34
|
+
color:COLORS.BRAND_1,
|
|
36
35
|
},
|
|
37
36
|
topSubContainer:{
|
|
38
37
|
display: 'flex',
|