fln-espranza 0.0.28 → 0.0.30

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.
@@ -39,38 +39,27 @@ export default function ETimeLineCard({ title, description, completed, disabled,
39
39
  {description}
40
40
  </EText>
41
41
  </View>
42
- {/* <View style={tw`ml-4`}>
43
- <ChevronRightIcon style={[tw``, { color: Colors['text-body'] }]} size={16} />
44
- </View> */}
45
- <View style={tw`ml-4`}>
46
- <EBadge
47
- completed={completed}
48
- text={
49
- badgeText ? badgeText : completed ? "Complete" : "Pending"}
50
- color={completed ? Colors['primary-base'] : Colors.warning}
51
- />
42
+ <View style={tw`ml-4`}>
43
+ <EBadge
44
+ completed={completed}
45
+ text={
46
+ badgeText ? badgeText : completed ? "Complete" : "Pending"}
47
+ color={completed ? Colors['primary-base'] : Colors.warning}
48
+ />
52
49
  </View>
53
50
  </View>
54
51
 
55
- <View style={tw`mt-6 flex-row items-center justify-between`}>
56
- {/* <EBadge
57
- completed={completed}
58
- text={completed ? "Complete" : "Pending"}
59
- color={completed ? Colors['primary-base'] : Colors.warning}
60
- /> */}
61
-
62
- {
63
- !disabled ? (
52
+ {
53
+ !disabled ? (
54
+ <View style={tw`mt-6 flex-row items-center justify-between`}>
64
55
  <TouchableOpacity style={tw`flex-row`} onPress={onPress}>
65
56
  <EText size="sm" style={[tw`ml-2 font-semibold`, { color: Colors['primary-base'] }]}>
66
57
  {buttonText}
67
58
  </EText>
68
59
  <EIconChevronRight size={20} style={[tw`ml-2`, { color: Colors['primary-base'] }]} />
69
60
  </TouchableOpacity>
70
-
71
- ) : <></>
72
- }
73
- </View>
61
+ </View>) : <></>
62
+ }
74
63
  </TouchableOpacity>
75
64
  )
76
65
  }
@@ -0,0 +1,20 @@
1
+ import * as React from "react"
2
+
3
+ export function EIconFemale(props){
4
+ const size = props.size || '100%';
5
+ return (
6
+ <svg
7
+ width={size}
8
+ height={size}
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ {...props}
12
+ >
13
+ <path
14
+ d="M6.157 14.73c.389.235.829.311 1.245.248l-.18.543-.002.004a1.315 1.315 0 0 0 1.123 1.72v2.63a1.874 1.874 0 0 0 3.281 1.241 1.874 1.874 0 0 0 3.281-1.241v-2.63a1.313 1.313 0 0 0 1.122-1.725v-.001l-.181-.54a1.876 1.876 0 0 0 1.884-2.82v-.001l-1.884-3.135v-.001a4.692 4.692 0 0 0-3.085-2.178 2.436 2.436 0 0 0 .587-3.88 2.437 2.437 0 1 0-2.86 3.88 4.692 4.692 0 0 0-3.085 2.178l-1.884 3.136a1.876 1.876 0 0 0 .638 2.573Z"
15
+ stroke="#000"
16
+ strokeWidth={1.5}
17
+ />
18
+ </svg>
19
+ )
20
+ }
@@ -0,0 +1,20 @@
1
+ import * as React from "react"
2
+
3
+ export function EIconMale(props){
4
+ const size = props.size || '100%';
5
+ return (
6
+ <svg
7
+ width={size}
8
+ height={size}
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ {...props}
12
+ >
13
+ <path
14
+ d="M11.624 21.116a1.874 1.874 0 0 0 3.281-1.241v-5.329a1.876 1.876 0 0 0 2.828-2.389l-2.049-3.409a4.131 4.131 0 0 0-2.85-1.944 2.436 2.436 0 0 0 .514-3.84 2.437 2.437 0 1 0-2.932 3.84 4.13 4.13 0 0 0-2.848 1.944l-2.05 3.41a1.876 1.876 0 0 0 2.825 2.391v5.326a1.874 1.874 0 0 0 3.281 1.241Z"
15
+ stroke="#000"
16
+ strokeWidth={1.5}
17
+ />
18
+ </svg>
19
+ )
20
+ }
package/index.ts CHANGED
@@ -84,6 +84,8 @@ import EQuestionSerialNumberLabel from "./components/EQuestionSerialNumberLabel"
84
84
  import EQuestionText from "./components/EQuestionText";
85
85
  import EEmptyPlaceholder from "./components/EEmptyPlaceholder";
86
86
  import EProfileScreenLayout from "./components/EProfileScreenLayout";
87
+ import { EIconMale } from "./components/icons/EIconMale";
88
+ import { EIconFemale } from "./components/icons/EIconFemale";
87
89
 
88
90
  export {
89
91
  Avatar,
@@ -171,6 +173,7 @@ export {
171
173
  EIconTrash,
172
174
  EIconUserCard,
173
175
  EIconUserCheck,
174
- EIconUsers
175
-
176
+ EIconUsers,
177
+ EIconMale,
178
+ EIconFemale
176
179
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fln-espranza",
3
- "version": "0.0.28",
3
+ "version": "0.0.30",
4
4
  "description": "All components used inside FLN Project of Espranza Innovations",
5
5
  "main": "index.ts",
6
6
  "scripts": {