fln-espranza 1.1.18 → 1.1.19
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/.expo/README.md +15 -15
- package/.expo/settings.json +8 -8
- package/assets/images/bg-profile.jpg +0 -0
- package/assets/images/bg-stat.png +0 -0
- package/assets/images/empty.png +0 -0
- package/assets/images/icon-placeholder-schedule.png +0 -0
- package/components/Avatar.tsx +3 -2
- package/components/Drawer.tsx +150 -97
- package/components/EBadge.tsx +50 -19
- package/components/EButton.tsx +10 -15
- package/components/EButtonIcon.tsx +3 -3
- package/components/EDateAndTimeCard.tsx +18 -17
- package/components/EDateInput.tsx +15 -14
- package/components/EEmptyPlaceholder.tsx +21 -0
- package/components/EInfoBox.tsx +3 -3
- package/components/EInput.tsx +7 -6
- package/components/ELabel.tsx +1 -1
- package/components/EListClusterMeeting.tsx +47 -0
- package/components/EListPerson.tsx +30 -10
- package/components/EListSchool.tsx +2 -2
- package/components/ENotFoundPlaceholder.tsx +43 -0
- package/components/EOption.tsx +98 -0
- package/components/EPageDescription.tsx +1 -2
- package/components/EPillButton.tsx +24 -17
- package/components/EProfile.tsx +40 -26
- package/components/EProfileScreenLayout.tsx +111 -0
- package/components/EProgressBar.tsx +47 -0
- package/components/EQuestionSerialNumberLabel.tsx +17 -0
- package/components/EQuestionText.tsx +14 -0
- package/components/EStat.tsx +44 -0
- package/components/EStatReport.tsx +49 -0
- package/components/EText.tsx +2 -1
- package/components/ETextArea.tsx +53 -0
- package/components/ETimeInput.tsx +3 -4
- package/components/ETimeLineCard.tsx +29 -29
- package/components/MenuItems.tsx +1 -1
- package/components/ModalLayout.tsx +13 -12
- package/components/PageHeader.tsx +66 -73
- package/components/PageHeaderSecondary.tsx +4 -2
- package/components/ProfileHeader.tsx +85 -0
- package/components/SecondaryBaseLayout.tsx +29 -32
- package/components/icons/EIconAdd.jsx +19 -0
- package/components/icons/EIconAddCircle.jsx +21 -0
- package/components/icons/EIconApplicationStatus.jsx +20 -0
- package/components/icons/EIconArrowDown.jsx +20 -0
- package/components/icons/EIconArrowLeft.jsx +21 -0
- package/components/icons/EIconArrowRight.jsx +21 -0
- package/components/icons/EIconArrowUp.jsx +20 -0
- package/components/icons/EIconBadge.jsx +20 -0
- package/components/icons/EIconBell.jsx +19 -0
- package/components/icons/EIconCalendar.jsx +21 -0
- package/components/icons/EIconCalendarCheck.jsx +24 -0
- package/components/icons/EIconCamera.jsx +20 -0
- package/components/icons/EIconCameraRotate.jsx +23 -0
- package/components/icons/EIconCheck.jsx +19 -0
- package/components/icons/EIconCheckCircle.jsx +20 -0
- package/components/icons/EIconCheckFill.jsx +19 -0
- package/components/icons/EIconChevronDown.jsx +19 -0
- package/components/icons/EIconChevronLeft.jsx +19 -0
- package/components/icons/EIconChevronRight.jsx +19 -0
- package/components/icons/EIconChevronUp.jsx +19 -0
- package/components/icons/EIconClock.jsx +19 -0
- package/components/icons/EIconClose.jsx +19 -0
- package/components/icons/EIconDashboard.jsx +20 -0
- package/components/icons/EIconDocumentCheck.jsx +14 -0
- package/components/icons/EIconEdit.jsx +19 -0
- package/components/icons/EIconFemale.jsx +20 -0
- package/components/icons/EIconFile.jsx +21 -0
- package/components/icons/EIconInfo.jsx +20 -0
- package/components/icons/EIconLogout.jsx +19 -0
- package/components/icons/EIconMale.jsx +21 -0
- package/components/icons/EIconMenu.jsx +19 -0
- package/components/icons/EIconMinus.jsx +19 -0
- package/components/icons/EIconPin.jsx +19 -0
- package/components/icons/EIconProfile.jsx +19 -0
- package/components/icons/EIconSchool.jsx +24 -0
- package/components/icons/EIconSearch.jsx +19 -0
- package/components/icons/EIconSettings.jsx +20 -0
- package/components/icons/EIconShare.jsx +21 -0
- package/components/icons/EIconStudent.jsx +24 -0
- package/components/icons/EIconSubject.jsx +21 -0
- package/components/icons/EIconTeach.jsx +21 -0
- package/components/icons/EIconTrash.jsx +19 -0
- package/components/icons/EIconUserCard.jsx +19 -0
- package/components/icons/EIconUserCheck.jsx +20 -0
- package/components/icons/EIconUsers.jsx +19 -0
- package/components/index.tsx +5 -1
- package/index.ts +185 -72
- package/lib/tailwind.js +7 -7
- package/lib/useChangeLanguage.ts +60 -0
- package/package.json +26 -26
- package/tailwind.config.js +32 -32
- package/utils/Color.ts +14 -14
- package/components/ProgressBar.tsx +0 -33
|
@@ -1,23 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
ImageBackground,
|
|
4
|
-
Dimensions,
|
|
5
|
-
Animated,
|
|
6
|
-
ScrollView,
|
|
7
|
-
Platform,
|
|
8
|
-
} from "react-native";
|
|
9
|
-
import React, { useEffect, useRef, useState } from "react";
|
|
1
|
+
import { View, Dimensions, ScrollView, Platform } from "react-native";
|
|
2
|
+
import React, { JSX } from "react";
|
|
10
3
|
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
|
11
4
|
import tw from "../lib/tailwind";
|
|
12
|
-
import EText from "./EText";
|
|
13
5
|
import { StatusBar } from "expo-status-bar";
|
|
14
|
-
import {
|
|
15
|
-
Container,
|
|
16
|
-
EButton,
|
|
17
|
-
EButtonIcon,
|
|
18
|
-
PageHeader,
|
|
19
|
-
PageHeaderSecondary,
|
|
20
|
-
} from ".";
|
|
6
|
+
import { PageHeader } from ".";
|
|
21
7
|
import Constants from "expo-constants";
|
|
22
8
|
import { useNavigation } from "@react-navigation/native";
|
|
23
9
|
|
|
@@ -37,6 +23,9 @@ interface BaseLayoutProps {
|
|
|
37
23
|
bottomButton?: JSX.Element;
|
|
38
24
|
border?: boolean;
|
|
39
25
|
menuButton?: boolean;
|
|
26
|
+
paddingTop?: number;
|
|
27
|
+
hideBackBtn?: boolean;
|
|
28
|
+
scrollViewRef?: any;
|
|
40
29
|
}
|
|
41
30
|
|
|
42
31
|
export default function SecondaryBaseLayout({
|
|
@@ -50,6 +39,9 @@ export default function SecondaryBaseLayout({
|
|
|
50
39
|
bottomButton,
|
|
51
40
|
border,
|
|
52
41
|
menuButton,
|
|
42
|
+
paddingTop,
|
|
43
|
+
hideBackBtn,
|
|
44
|
+
scrollViewRef,
|
|
53
45
|
}: BaseLayoutProps) {
|
|
54
46
|
const insets = useSafeAreaInsets();
|
|
55
47
|
|
|
@@ -61,7 +53,14 @@ export default function SecondaryBaseLayout({
|
|
|
61
53
|
tw`flex-1 bg-white`,
|
|
62
54
|
{
|
|
63
55
|
paddingBottom: Platform.OS === "ios" ? insets.bottom : 0,
|
|
64
|
-
paddingTop:
|
|
56
|
+
paddingTop:
|
|
57
|
+
Platform.OS === "ios"
|
|
58
|
+
? paddingTop
|
|
59
|
+
? paddingTop
|
|
60
|
+
: 44
|
|
61
|
+
: paddingTop
|
|
62
|
+
? paddingTop
|
|
63
|
+
: 24,
|
|
65
64
|
},
|
|
66
65
|
]}
|
|
67
66
|
>
|
|
@@ -70,22 +69,11 @@ export default function SecondaryBaseLayout({
|
|
|
70
69
|
{/* HEADER */}
|
|
71
70
|
<View
|
|
72
71
|
style={[
|
|
73
|
-
tw`absolute top-0 right-0 left-0 pt-
|
|
72
|
+
tw`absolute top-0 right-0 left-0 pt-0 z-10 w-full bg-white ${
|
|
74
73
|
title ? "mb-1" : "pb-0"
|
|
75
74
|
}`,
|
|
76
75
|
]}
|
|
77
76
|
>
|
|
78
|
-
{/* <PageHeaderSecondary
|
|
79
|
-
title={title}
|
|
80
|
-
subtitle={subtitle}
|
|
81
|
-
button={
|
|
82
|
-
<EButtonIcon
|
|
83
|
-
type="close"
|
|
84
|
-
iconColor="slate-800"
|
|
85
|
-
onPress={() => navigation.goBack()}
|
|
86
|
-
/>
|
|
87
|
-
}
|
|
88
|
-
/> */}
|
|
89
77
|
<PageHeader
|
|
90
78
|
border={border}
|
|
91
79
|
title={title}
|
|
@@ -93,14 +81,16 @@ export default function SecondaryBaseLayout({
|
|
|
93
81
|
curved={curved}
|
|
94
82
|
iconEnd={iconEnd}
|
|
95
83
|
menuButton={menuButton}
|
|
84
|
+
hideBackBtn={hideBackBtn}
|
|
96
85
|
>
|
|
97
86
|
{headerContent}
|
|
98
87
|
</PageHeader>
|
|
99
88
|
</View>
|
|
100
89
|
<ScrollView
|
|
90
|
+
ref={scrollViewRef}
|
|
101
91
|
style={[
|
|
102
92
|
tw`flex-1`,
|
|
103
|
-
{ paddingBottom: insets.bottom, paddingTop: !title ? 80 :
|
|
93
|
+
{ paddingBottom: insets.bottom, paddingTop: !title ? 80 : 58 },
|
|
104
94
|
]}
|
|
105
95
|
showsVerticalScrollIndicator={false}
|
|
106
96
|
decelerationRate={"fast"}
|
|
@@ -111,7 +101,14 @@ export default function SecondaryBaseLayout({
|
|
|
111
101
|
{children}
|
|
112
102
|
</ScrollView>
|
|
113
103
|
{bottomButton ? (
|
|
114
|
-
<View
|
|
104
|
+
<View
|
|
105
|
+
style={[
|
|
106
|
+
tw` px-4 `,
|
|
107
|
+
{ paddingBottom: Platform.OS === "android" ? 8 : 0 },
|
|
108
|
+
]}
|
|
109
|
+
>
|
|
110
|
+
{bottomButton}
|
|
111
|
+
</View>
|
|
115
112
|
) : (
|
|
116
113
|
<></>
|
|
117
114
|
)}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconAdd(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<Path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M12 5.25a.75.75 0 01.75.75v5.25H18a.75.75 0 010 1.5h-5.25V18a.75.75 0 01-1.5 0v-5.25H6a.75.75 0 010-1.5h5.25V6a.75.75 0 01.75-.75z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
className=""
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default EIconAdd;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconAddCircle(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M12 7.25a.75.75 0 01.75.75v8a.75.75 0 01-1.5 0V8a.75.75 0 01.75-.75z" />
|
|
14
|
+
<Path d="M7.25 12a.75.75 0 01.75-.75h8a.75.75 0 010 1.5H8a.75.75 0 01-.75-.75z" />
|
|
15
|
+
<Path d="M12 3.75A8.25 8.25 0 003.75 12 8.25 8.25 0 0012 20.25 8.25 8.25 0 0020.25 12 8.25 8.25 0 0012 3.75zM2.25 12A9.75 9.75 0 0112 2.25 9.75 9.75 0 0121.75 12 9.75 9.75 0 0112 21.75 9.75 9.75 0 012.25 12z" />
|
|
16
|
+
</G>
|
|
17
|
+
</Svg>
|
|
18
|
+
)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export default EIconAddCircle;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconApplicationStatus(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M5.5 3.75a.75.75 0 00-.75.75v15c0 .414.336.75.75.75h13a.75.75 0 00.75-.75v-15a.75.75 0 00-.75-.75h-13zm-2.25.75A2.25 2.25 0 015.5 2.25h13a2.25 2.25 0 012.25 2.25v15a2.25 2.25 0 01-2.25 2.25h-13a2.25 2.25 0 01-2.25-2.25v-15z" />
|
|
14
|
+
<Path d="M11.882 16.5a.75.75 0 01.75-.75h4a.75.75 0 010 1.5h-4a.75.75 0 01-.75-.75zM10.058 15.15a.75.75 0 01-.057 1.06l-1.336 1.2a.75.75 0 01-1.002 0l-.664-.597a.75.75 0 011.002-1.116l.163.147.835-.75a.75.75 0 011.06.057zM11.882 12.5a.75.75 0 01.75-.75h4a.75.75 0 010 1.5h-4a.75.75 0 01-.75-.75zM8.25 7A.75.75 0 019 6.25h6a.75.75 0 010 1.5H9A.75.75 0 018.25 7zM10.058 11.15a.75.75 0 01-.057 1.06l-1.336 1.2a.75.75 0 01-1.002 0l-.664-.597a.75.75 0 011.002-1.116l.163.147.835-.75a.75.75 0 011.06.057z" />
|
|
15
|
+
</G>
|
|
16
|
+
</Svg>
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default EIconApplicationStatus;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconArrowDown(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M12 4.25a.75.75 0 01.75.75v14a.75.75 0 01-1.5 0V5a.75.75 0 01.75-.75z" />
|
|
14
|
+
<Path d="M6.469 13.469a.75.75 0 011.06 0L12 17.939l4.47-4.47a.75.75 0 111.061 1.06l-5 5.001a.75.75 0 01-1.061 0l-5.001-5a.75.75 0 010-1.061z" />
|
|
15
|
+
</G>
|
|
16
|
+
</Svg>
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default EIconArrowDown;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconArrowLeft(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M4.25 12a.75.75 0 01.75-.75h14a.75.75 0 010 1.5H5a.75.75 0 01-.75-.75z" />
|
|
14
|
+
<Path d="M10.53 6.47a.75.75 0 010 1.06l-5 5a.75.75 0 01-1.06-1.06l5-5a.75.75 0 011.06 0z" />
|
|
15
|
+
<Path d="M4.47 11.47a.75.75 0 011.06 0l5 5a.75.75 0 11-1.06 1.06l-5-5a.75.75 0 010-1.06z" />
|
|
16
|
+
</G>
|
|
17
|
+
</Svg>
|
|
18
|
+
)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export default EIconArrowLeft;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconArrowRight(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M4.25 12a.75.75 0 01.75-.75h14a.75.75 0 010 1.5H5a.75.75 0 01-.75-.75z" />
|
|
14
|
+
<Path d="M19.53 11.47a.75.75 0 010 1.06l-5 5a.75.75 0 11-1.06-1.06l5-5a.75.75 0 011.06 0z" />
|
|
15
|
+
<Path d="M13.47 6.47a.75.75 0 011.06 0l5 5a.75.75 0 11-1.06 1.06l-5-5a.75.75 0 010-1.06z" />
|
|
16
|
+
</G>
|
|
17
|
+
</Svg>
|
|
18
|
+
)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export default EIconArrowRight;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconArrowUp(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M12 4.25a.75.75 0 01.75.75v14a.75.75 0 01-1.5 0V5a.75.75 0 01.75-.75z" />
|
|
14
|
+
<Path d="M11.47 4.469a.75.75 0 011.06 0l5.001 5a.75.75 0 01-1.06 1.061L12 6.06l-4.47 4.47a.75.75 0 01-1.061-1.06l5-5.001z" />
|
|
15
|
+
</G>
|
|
16
|
+
</Svg>
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default EIconArrowUp;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconBadge(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M10.08 2.9a3.161 3.161 0 013.84 0l1.404 1.073 1.755.234a3.162 3.162 0 012.716 2.718l.232 1.75L21.1 10.08a3.163 3.163 0 010 3.84l-1.074 1.404-.234 1.754a3.162 3.162 0 01-2.719 2.716l-1.747.232L13.92 21.1a3.161 3.161 0 01-3.84 0l-1.404-1.073-1.754-.235a3.161 3.161 0 01-2.716-2.718l-.232-1.75L2.9 13.919a3.164 3.164 0 010-3.84l1.074-1.405.235-1.753a3.162 3.162 0 012.718-2.716l1.748-.233L10.08 2.9zm-.618 2.359a.747.747 0 01-.39.174l-1.948.26a1.662 1.662 0 00-1.43 1.427l-.26 1.952a.747.747 0 01-.158.37l-.018.023-1.167 1.526a1.664 1.664 0 000 2.019l1.195 1.564a.75.75 0 01.148.357l.257 1.947c.099.744.684 1.33 1.428 1.429l1.952.26a.75.75 0 01.356.148l1.563 1.194a1.661 1.661 0 002.019 0l1.528-1.168a.747.747 0 01.39-.174l1.948-.259a1.662 1.662 0 001.43-1.427l.26-1.952a.746.746 0 01.157-.37l.018-.023 1.167-1.526a1.662 1.662 0 000-2.02l-1.194-1.564a.75.75 0 01-.146-.356l-.259-1.947a1.661 1.661 0 00-1.427-1.43l-1.953-.26a.75.75 0 01-.356-.147l-1.563-1.194a1.661 1.661 0 00-2.019 0L9.462 5.259z" />
|
|
14
|
+
<Path d="M15.333 10.072a.75.75 0 010 1.06l-3.5 3.501a.75.75 0 01-1.061 0l-2.103-2.1a.75.75 0 011.06-1.062l1.573 1.572 2.97-2.971a.75.75 0 011.061 0z" />
|
|
15
|
+
</G>
|
|
16
|
+
</Svg>
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default EIconBadge;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconBell(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M9.55 19.403a.75.75 0 011.05.15 1.75 1.75 0 002.8 0 .75.75 0 011.2.9 3.25 3.25 0 01-5.2 0 .75.75 0 01.15-1.05zM12 3.746A5.252 5.252 0 006.747 9v3.4a.748.748 0 01-.214.613L5.156 14.39a1.384 1.384 0 00.98 2.362h11.728a1.384 1.384 0 00.98-2.362l-1.377-1.378a.75.75 0 01-.214-.613V9A5.253 5.253 0 0012 3.746zm6.753 8.43V8.999a6.752 6.752 0 10-13.506 0v3.177l-1.152 1.153a2.884 2.884 0 002.04 4.923h11.73m.888-6.076l1.152 1.153a2.884 2.884 0 01-2.04 4.923" />
|
|
14
|
+
</G>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default EIconBell;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconCalendar(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M7.25 2a.75.75 0 01.75.75v3a.75.75 0 01-1.5 0v-3A.75.75 0 017.25 2zM16.25 2a.75.75 0 01.75.75v3a.75.75 0 01-1.5 0v-3a.75.75 0 01.75-.75z" />
|
|
14
|
+
<Path d="M2 7.25A3.75 3.75 0 015.75 3.5h12a3.75 3.75 0 013.75 3.75v10.5a3.75 3.75 0 01-3.75 3.75h-12A3.75 3.75 0 012 17.75V7.25zM5.75 5A2.25 2.25 0 003.5 7.25v10.5A2.25 2.25 0 005.75 20h12A2.25 2.25 0 0020 17.75V7.25A2.25 2.25 0 0017.75 5h-12z" />
|
|
15
|
+
<Path d="M6.5 10.75a.75.75 0 01.75-.75h9a.75.75 0 010 1.5h-9a.75.75 0 01-.75-.75zM15 16.75a.75.75 0 01.75-.75h1a.75.75 0 010 1.5h-1a.75.75 0 01-.75-.75z" />
|
|
16
|
+
</G>
|
|
17
|
+
</Svg>
|
|
18
|
+
)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export default EIconCalendar;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconCalendarCheck(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M12 15.751a.75.75 0 00-.75.75v3.502a.75.75 0 01-1.5 0v-3.501a2.25 2.25 0 012.25-2.25.75.75 0 010 1.5z" />
|
|
14
|
+
<Path d="M12.673 7.528a1.25 1.25 0 00-1.347 0l-3 1.917a1.25 1.25 0 00-.578 1.054v9.504a.75.75 0 01-1.5 0V10.5a2.75 2.75 0 011.27-2.318l3.001-1.917a2.75 2.75 0 012.962 0l3.001 1.917a2.75 2.75 0 011.27 2.318V12a.75.75 0 01-1.5 0v-1.5a1.25 1.25 0 00-.577-1.055l-3.002-1.917zM16.102 17.723a.75.75 0 011.06-.054l.833.752a.75.75 0 01-1.005 1.114l-.833-.752a.75.75 0 01-.055-1.06z" />
|
|
15
|
+
<Path d="M19.77 16.523a.75.75 0 01.04 1.06l-1.767 1.905a.75.75 0 11-1.1-1.02l1.767-1.905a.75.75 0 011.06-.04z" />
|
|
16
|
+
<Path d="M18.003 14.75a3.252 3.252 0 100 6.504 3.252 3.252 0 000-6.503zm-4.752 3.253a4.752 4.752 0 119.503 0 4.752 4.752 0 01-9.503 0zM11.25 1.996a.75.75 0 01.75-.75h4.002a.75.75 0 01.75.75v2.5a.75.75 0 01-.75.75H12a.75.75 0 010-1.5h3.252v-1H12a.75.75 0 01-.75-.75z" />
|
|
17
|
+
<Path d="M12 1.246a.75.75 0 01.75.75V6.58a.75.75 0 01-1.5 0V1.996a.75.75 0 01.75-.75zM1.246 20.003a.75.75 0 01.75-.75H12a.75.75 0 010 1.5H1.996a.75.75 0 01-.75-.75z" />
|
|
18
|
+
<Path d="M3.997 10.75a.25.25 0 00-.25.25v9.003a.75.75 0 01-1.5 0V11c0-.967.783-1.75 1.75-1.75h3a.75.75 0 110 1.5h-3zM16.252 10a.75.75 0 01.75-.75h3.001c.967 0 1.75.783 1.75 1.75v1a.75.75 0 11-1.5 0v-1a.25.25 0 00-.25-.25h-3a.75.75 0 01-.75-.75z" />
|
|
19
|
+
</G>
|
|
20
|
+
</Svg>
|
|
21
|
+
)
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default EIconCalendarCheck;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconCamera(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M14.349 10.698a3.237 3.237 0 10-4.578 4.578 3.237 3.237 0 004.578-4.578zm1.06-1.06a4.737 4.737 0 10-6.699 6.699 4.737 4.737 0 006.7-6.7z" />
|
|
14
|
+
<Path d="M9.326 4.75a.25.25 0 00-.216.124L7.648 7.378A.75.75 0 017 7.75H5c-.69 0-1.25.56-1.25 1.25v9c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V9c0-.69-.56-1.25-1.25-1.25h-2a.75.75 0 01-.643-.363L14.845 4.87a.252.252 0 00-.215-.121H9.326zm-1.512-.632a1.75 1.75 0 011.512-.868h5.304c.614 0 1.183.322 1.5.847l1.294 2.153H19A2.75 2.75 0 0121.75 9v9A2.75 2.75 0 0119 20.75H5A2.75 2.75 0 012.25 18V9A2.75 2.75 0 015 6.25h1.57l1.244-2.132z" />
|
|
15
|
+
</G>
|
|
16
|
+
</Svg>
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default EIconCamera;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconCameraRotate(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path
|
|
14
|
+
fillRule="evenodd"
|
|
15
|
+
clipRule="evenodd"
|
|
16
|
+
d="M14.284 3.49a1.86 1.86 0 00-.916-.24h-2.766a1.86 1.86 0 00-1.607.923l-.758 1.299h-1.1A2.14 2.14 0 005 7.611v5a2.14 2.14 0 002.139 2.139h9.723A2.14 2.14 0 0019 12.611v-5a2.14 2.14 0 00-2.138-2.139h-1.105l-.794-1.32a1.86 1.86 0 00-.68-.661l.001-.001zm-.607 1.435l1.006 1.672a.75.75 0 00.65.375h1.529a.64.64 0 01.638.639v5a.64.64 0 01-.64.639H7.14a.64.64 0 01-.64-.64V7.612a.64.64 0 01.64-.639h1.527a.75.75 0 00.648-.372l.976-1.671a.36.36 0 01.311-.179h2.766a.36.36 0 01.31.175l-.001-.001zm-2.48 3.786a1.195 1.195 0 111.689 1.69 1.195 1.195 0 01-1.69-1.69h.001zm.845-1.85a2.696 2.696 0 110 5.394 2.696 2.696 0 010-5.395v.001zm8.249 6.692a.75.75 0 011.05-.145c.784.593 1.409 1.388 1.409 2.37 0 1.243-.972 2.196-2.141 2.855-1.214.684-2.878 1.198-4.771 1.494a.75.75 0 11-.232-1.482c1.785-.28 3.26-.751 4.266-1.319 1.05-.591 1.378-1.155 1.378-1.548 0-.298-.191-.703-.814-1.174a.75.75 0 01-.145-1.05v-.001zm-16.582 0a.75.75 0 01-.145 1.051c-.623.47-.814.876-.814 1.174 0 .256.13.582.543.962.414.38 1.054.757 1.908 1.089 1.294.503 2.994.87 4.918 1.017a.75.75 0 011.078-1.042l1.331 1.33.012.012a.745.745 0 01-.012 1.054l-1.33 1.33a.75.75 0 11-1.061-1.06l.11-.11c-2.14-.144-4.077-.545-5.59-1.133-.956-.372-1.78-.833-2.379-1.383-.599-.551-1.028-1.248-1.028-2.066 0-.982.625-1.777 1.408-2.37a.75.75 0 011.051.145z"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
/></G>
|
|
19
|
+
</Svg>
|
|
20
|
+
)
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export default EIconCameraRotate;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconCheck(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<Path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M20.53 5.47a.75.75 0 010 1.06l-11 11a.75.75 0 01-1.06 0l-5-5a.75.75 0 111.06-1.06L9 15.94 19.47 5.47a.75.75 0 011.06 0z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
className=""
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default EIconCheck;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconCheckCircle(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M12 3.746a8.254 8.254 0 100 16.508 8.254 8.254 0 000-16.508zM2.246 12c0-5.387 4.367-9.754 9.754-9.754S21.754 6.613 21.754 12 17.387 21.754 12 21.754 2.246 17.387 2.246 12z" />
|
|
14
|
+
<Path d="M16.018 9.072a.75.75 0 010 1.06l-4.77 4.77a.753.753 0 01-1.168.135L7.912 12.87a.75.75 0 011.06-1.06l1.624 1.623 4.361-4.36a.75.75 0 011.06 0z" />
|
|
15
|
+
</G>
|
|
16
|
+
</Svg>
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default EIconCheckCircle;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
export default function EIconCheckFill(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<Path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M12 2.246c-5.387 0-9.754 4.367-9.754 9.754S6.613 21.754 12 21.754s9.754-4.367 9.754-9.754S17.387 2.246 12 2.246zm4.195 8.063a1 1 0 00-1.415-1.414l-4.184 4.184-1.446-1.447a1 1 0 00-1.415 1.414l2.168 2.168a1 1 0 001.541-.155l4.75-4.75z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
className=""
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// export default EIconCheckFill;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconChevronDown(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<Path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M7.47 9.47a.75.75 0 011.06 0L12 12.94l3.47-3.47a.75.75 0 111.06 1.06l-4 4a.75.75 0 01-1.06 0l-4-4a.75.75 0 010-1.06z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
className=""
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default EIconChevronDown;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconChevronLeft(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<Path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M14.53 7.47a.75.75 0 010 1.06L11.06 12l3.47 3.47a.75.75 0 11-1.06 1.06l-4-4a.75.75 0 010-1.06l4-4a.75.75 0 011.06 0z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
className=""
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default EIconChevronLeft;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconChevronRight(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<Path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M9.47 16.53a.75.75 0 010-1.06L12.94 12 9.47 8.53a.75.75 0 011.06-1.06l4 4a.75.75 0 010 1.06l-4 4a.75.75 0 01-1.06 0z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
className=""
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default EIconChevronRight;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconChevronUp(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<Path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M16.53 14.53a.75.75 0 01-1.06 0L12 11.06l-3.47 3.47a.75.75 0 01-1.06-1.06l4-4a.75.75 0 011.06 0l4 4a.75.75 0 010 1.06z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
className=""
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default EIconChevronUp;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconClock(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<Path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M12.017 3.263a8.254 8.254 0 100 16.507 8.254 8.254 0 000-16.507zm-9.754 8.254c0-5.387 4.367-9.754 9.754-9.754s9.754 4.367 9.754 9.754-4.367 9.753-9.754 9.753-9.754-4.366-9.754-9.753zm9.901-.148V6.515a.75.75 0 00-1.5 0v5.604c0 .414.336.75.75.75h4.652a.75.75 0 000-1.5h-3.902z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
className=""
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default EIconClock;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconClose(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<Path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M5.47 5.47a.75.75 0 011.06 0l12 12a.75.75 0 11-1.06 1.06L12 13.06l-5.47 5.47a.75.75 0 01-1.06-1.06L10.94 12 5.47 6.53a.75.75 0 010-1.06zm13.06 0a.75.75 0 010 1.06l-4 4a.75.75 0 11-1.06-1.06l4-4a.75.75 0 011.06 0z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
className=""
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default EIconClose;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconDashboard(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<G
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
>
|
|
13
|
+
<Path d="M15.25 11.5a.75.75 0 00-.75-.75h-5a.75.75 0 000 1.5h5a.75.75 0 00.75-.75zM15.25 15.5a.75.75 0 00-.75-.75h-5a.75.75 0 000 1.5h5a.75.75 0 00.75-.75z" />
|
|
14
|
+
<Path d="M9.345 4.681a4.25 4.25 0 015.31 0l4.188 3.35a3.75 3.75 0 011.407 2.929v5.54a3.75 3.75 0 01-3.75 3.75h-9a3.75 3.75 0 01-3.75-3.75v-5.54a3.75 3.75 0 011.407-2.93l4.188-3.35zm6.247-1.171a5.75 5.75 0 00-7.184 0L4.22 6.86a5.25 5.25 0 00-1.97 4.1v5.54c0 2.9 2.35 5.25 5.25 5.25h9c2.9 0 5.25-2.35 5.25-5.25v-5.54a5.25 5.25 0 00-1.97-4.1l-4.188-3.35z" />
|
|
15
|
+
</G>
|
|
16
|
+
</Svg>
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default EIconDashboard;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconDocumentCheck(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" height={size} width={size} {...props}>
|
|
8
|
+
<Path strokeLinecap="round" strokeLinejoin="round" d="M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 019 9v.375M10.125 2.25A3.375 3.375 0 0113.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 013.375 3.375M9 15l2.25 2.25L15 12" />
|
|
9
|
+
</Svg>
|
|
10
|
+
|
|
11
|
+
)
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export default EIconDocumentCheck;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import Svg, { G, Path } from "react-native-svg"
|
|
3
|
+
|
|
4
|
+
function EIconEdit(props) {
|
|
5
|
+
const size = props.size || '100%';
|
|
6
|
+
return (
|
|
7
|
+
<Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
8
|
+
<Path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M16.15 5.823a.25.25 0 01.352 0L18.178 7.5a.25.25 0 010 .353L16.84 9.189l-2.028-2.028 1.337-1.338zm-2.897.775a.76.76 0 00-.065.065l-8.424 8.424v.001c-.33.329-.514.774-.514 1.237V19c0 .414.336.75.75.75h2.675c.463 0 .909-.183 1.237-.513v-.001l8.444-8.442a.97.97 0 00.028-.028l1.854-1.854a1.75 1.75 0 000-2.473l-1.676-1.676a1.75 1.75 0 00-2.473 0l-1.836 1.835zm2.526 3.652l-7.928 7.927-.002.001a.245.245 0 01-.174.072H5.75v-1.925c0-.066.026-.129.072-.174l.001-.002 7.928-7.927 2.028 2.028z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
className=""
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default EIconEdit;
|