react-native-exp-fig 0.1.0 → 0.1.2
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 +200 -200
- package/src/common/constants/index.ts +5 -0
- package/src/common/icons-svg/arrow-drop-down/index.tsx +28 -28
- package/src/common/icons-svg/arrow-left/index.tsx +32 -32
- package/src/common/icons-svg/bluetooth/index.tsx +37 -37
- package/src/common/icons-svg/bluetooth-connected/index.tsx +41 -41
- package/src/common/icons-svg/calendar/index.tsx +40 -40
- package/src/common/icons-svg/call-bell/index.tsx +29 -29
- package/src/common/icons-svg/camera-plus/index.tsx +40 -40
- package/src/common/icons-svg/chart-bar/index.tsx +29 -0
- package/src/common/icons-svg/check-box-fill/index.tsx +30 -30
- package/src/common/icons-svg/check-box-outline/index.tsx +30 -30
- package/src/common/icons-svg/check-circle/index.tsx +27 -27
- package/src/common/icons-svg/closed/index.tsx +34 -34
- package/src/common/icons-svg/constants/index.ts +46 -43
- package/src/common/icons-svg/credit-card/index.tsx +32 -32
- package/src/common/icons-svg/currency/index.tsx +39 -39
- package/src/common/icons-svg/currency-circle-dollar/index.tsx +29 -0
- package/src/common/icons-svg/eye/index.tsx +31 -31
- package/src/common/icons-svg/eye-slash/index.tsx +31 -31
- package/src/common/icons-svg/file-text/index.tsx +39 -39
- package/src/common/icons-svg/gas-pump/index.tsx +39 -39
- package/src/common/icons-svg/gauge/index.tsx +39 -39
- package/src/common/icons-svg/gear/index.tsx +39 -39
- package/src/common/icons-svg/index.tsx +167 -149
- package/src/common/icons-svg/interface.d.ts +18 -18
- package/src/common/icons-svg/list/index.tsx +58 -58
- package/src/common/icons-svg/moon-stars/index.tsx +29 -29
- package/src/common/icons-svg/note-pincel/index.tsx +40 -40
- package/src/common/icons-svg/package/index.tsx +29 -0
- package/src/common/icons-svg/package-check/index.tsx +45 -45
- package/src/common/icons-svg/shopping-cart/index.tsx +39 -39
- package/src/common/icons-svg/steering-wheel/index.tsx +49 -49
- package/src/common/icons-svg/steering-wheel-fill/index.tsx +36 -36
- package/src/common/icons-svg/timer/index.tsx +39 -39
- package/src/common/icons-svg/trophy/index.tsx +29 -29
- package/src/common/icons-svg/truck/index.tsx +39 -39
- package/src/common/icons-svg/truck-trailer/index.tsx +36 -0
- package/src/common/icons-svg/wifi-high/index.tsx +43 -43
- package/src/common/icons-svg/wifi-x/index.tsx +50 -50
- package/src/components/box/index.tsx +47 -47
- package/src/components/box/interface.d.ts +31 -31
- package/src/components/box/styles.ts +21 -21
- package/src/components/button/index.tsx +61 -61
- package/src/components/button/interface.d.ts +40 -40
- package/src/components/button/styles.ts +34 -34
- package/src/components/capture-photo/index.tsx +125 -125
- package/src/components/capture-photo/interface.d.ts +44 -44
- package/src/components/capture-photo/styles.ts +24 -24
- package/src/components/card-hours/index.tsx +118 -118
- package/src/components/card-hours/interface.d.ts +37 -37
- package/src/components/card-scheduled-journey/index.tsx +138 -138
- package/src/components/card-scheduled-journey/interface.ts +42 -42
- package/src/components/card-scheduled-journey/styles.ts +26 -26
- package/src/components/header-profile/index.tsx +128 -128
- package/src/components/header-profile/interface.d.ts +52 -52
- package/src/components/input/index.tsx +176 -180
- package/src/components/input/interface.d.ts +55 -55
- package/src/components/input/styles.ts +23 -23
- package/src/components/menu-item/index.tsx +78 -0
- package/src/components/menu-item/interface.d.ts +19 -0
- package/src/components/menu-item/styles.ts +0 -0
- package/src/components/scheduled-journey-indicators/index.tsx +99 -99
- package/src/components/scheduled-journey-indicators/interface.d.ts +18 -18
- package/src/components/selects/select-option/index.tsx +104 -104
- package/src/components/selects/select-option/interface.d.ts +18 -18
- package/src/components/selects/select-option/styles.ts +75 -75
- package/src/components/step-indicator/helpers/get-icon-by-status.tsx +20 -20
- package/src/components/step-indicator/index.tsx +164 -164
- package/src/components/step-indicator/interface.d.ts +34 -34
- package/src/components/step-indicator/styles.ts +67 -67
- package/src/components/typography/index.tsx +67 -67
- package/src/components/typography/interface.d.ts +102 -102
- package/src/components/typography/styles.ts +34 -34
- package/src/components/user-profile/index.tsx +216 -0
- package/src/components/user-profile/interface.d.ts +22 -0
- package/src/index.tsx +25 -23
- package/src/stories/box/box.stories.tsx +106 -106
- package/src/stories/button/button.stories.tsx +143 -143
- package/src/stories/capture-photo/capture-photo.stories.tsx +170 -170
- package/src/stories/card-hours/card-hours.stories.tsx +102 -102
- package/src/stories/card-scheduled-journey/card-scheduled-journey.stories.tsx +101 -101
- package/src/stories/header-profile/header-profile.stories.tsx +84 -84
- package/src/stories/input/input.stories.tsx +286 -286
- package/src/stories/menu-item/menu-item.stories.tsx +76 -0
- package/src/stories/scheduled-journey-indicators/sheduled-journey-indicators.stories.tsx +74 -74
- package/src/stories/select-option/select-option.stories.tsx +46 -46
- package/src/stories/step-indicator/step-indicator.stories.tsx +116 -116
- package/src/stories/typography/typography.stories.tsx +146 -146
- package/src/stories/user-profile/user-profile.stories.tsx +56 -0
- package/src/styles/global/interface.d.ts +131 -131
- package/src/styles/global/styles.ts +63 -63
- package/src/styles/global/theme-provider.tsx +10 -10
- package/src/styles/theme/theme.ts +158 -156
- package/src/utils/format-data/index.ts +14 -14
- package/src/utils/mutiply/index.ts +3 -3
|
@@ -1,149 +1,167 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* IMPORTS
|
|
3
|
-
*/
|
|
4
|
-
import React from "react";
|
|
5
|
-
|
|
6
|
-
// commons / svg
|
|
7
|
-
import { SvgIconSteeringWheel } from "./steering-wheel";
|
|
8
|
-
import { SvgIconCheckBoxFill } from "./check-box-fill";
|
|
9
|
-
import { SvgIconCheckBoxOutline } from "./check-box-outline";
|
|
10
|
-
import { SvgIconCameraPlus } from "./camera-plus";
|
|
11
|
-
import { SvgIconMoonStars } from "./moon-stars";
|
|
12
|
-
import { SvgIconCallBell } from "./call-bell";
|
|
13
|
-
import { SvgIconSteeringWheelFill } from "./steering-wheel-fill";
|
|
14
|
-
import { SvgIconTrophy } from "./trophy";
|
|
15
|
-
import { IconShoppingCart } from "./shopping-cart";
|
|
16
|
-
import { IconCreditCard } from "./credit-card";
|
|
17
|
-
import { IconFileText } from "./file-text";
|
|
18
|
-
import { IconTruck } from "./truck";
|
|
19
|
-
import { IconPackageCheck } from "./package-check";
|
|
20
|
-
import { SvgIconEyeSlash } from "./eye-slash";
|
|
21
|
-
import { SvgIconCalendar } from "./calendar";
|
|
22
|
-
import { SvgIconCurrency } from "./currency";
|
|
23
|
-
import { SvgIconEye } from "./eye";
|
|
24
|
-
import { SvgIconGasPump } from "./gas-pump";
|
|
25
|
-
import { SvgIconGauge } from "./gauge";
|
|
26
|
-
import { SvgIconGear } from "./gear";
|
|
27
|
-
import { SvgIconTimer } from "./timer";
|
|
28
|
-
import { SvgIconNotePencil } from "./note-pincel";
|
|
29
|
-
import { SvgIconCheckCircle } from "./check-circle";
|
|
30
|
-
import { SvgIconArrowLeft } from "./arrow-left";
|
|
31
|
-
import { SvgIconBluetooth } from "./bluetooth";
|
|
32
|
-
import { SvgIconBluetoothConnected } from "./bluetooth-connected";
|
|
33
|
-
import { SvgIconList } from "./list";
|
|
34
|
-
import { SvgIconWiFiHigh } from "./wifi-high";
|
|
35
|
-
import { SvgIconWiFiX } from "./wifi-x";
|
|
36
|
-
import { SvgIconArrowDropDown } from "./arrow-drop-down";
|
|
37
|
-
import { SvgIconClosed } from "./closed";
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
import {
|
|
41
|
-
|
|
42
|
-
//
|
|
43
|
-
import {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
case "
|
|
51
|
-
return <
|
|
52
|
-
|
|
53
|
-
case "
|
|
54
|
-
return <
|
|
55
|
-
|
|
56
|
-
case "
|
|
57
|
-
return <
|
|
58
|
-
|
|
59
|
-
case "
|
|
60
|
-
return <
|
|
61
|
-
|
|
62
|
-
case "
|
|
63
|
-
return <
|
|
64
|
-
|
|
65
|
-
case "
|
|
66
|
-
return <
|
|
67
|
-
|
|
68
|
-
case "
|
|
69
|
-
return <
|
|
70
|
-
|
|
71
|
-
case "
|
|
72
|
-
return <
|
|
73
|
-
|
|
74
|
-
case "
|
|
75
|
-
return <
|
|
76
|
-
|
|
77
|
-
case "
|
|
78
|
-
return <
|
|
79
|
-
|
|
80
|
-
case "
|
|
81
|
-
return <
|
|
82
|
-
|
|
83
|
-
case "
|
|
84
|
-
return <
|
|
85
|
-
|
|
86
|
-
case "
|
|
87
|
-
return <
|
|
88
|
-
|
|
89
|
-
case "
|
|
90
|
-
return <
|
|
91
|
-
|
|
92
|
-
case "
|
|
93
|
-
return <
|
|
94
|
-
|
|
95
|
-
case "
|
|
96
|
-
return <
|
|
97
|
-
|
|
98
|
-
case "
|
|
99
|
-
return <
|
|
100
|
-
|
|
101
|
-
case "
|
|
102
|
-
return <
|
|
103
|
-
|
|
104
|
-
case "
|
|
105
|
-
return <
|
|
106
|
-
|
|
107
|
-
case "
|
|
108
|
-
return <
|
|
109
|
-
|
|
110
|
-
case "
|
|
111
|
-
return <
|
|
112
|
-
|
|
113
|
-
case "
|
|
114
|
-
return <
|
|
115
|
-
|
|
116
|
-
case "
|
|
117
|
-
return <
|
|
118
|
-
|
|
119
|
-
case "
|
|
120
|
-
return <
|
|
121
|
-
|
|
122
|
-
case "
|
|
123
|
-
return <
|
|
124
|
-
|
|
125
|
-
case "
|
|
126
|
-
return <
|
|
127
|
-
|
|
128
|
-
case "
|
|
129
|
-
return <
|
|
130
|
-
|
|
131
|
-
case "
|
|
132
|
-
return <
|
|
133
|
-
|
|
134
|
-
case "
|
|
135
|
-
return <
|
|
136
|
-
|
|
137
|
-
case "
|
|
138
|
-
return <
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
return <
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
1
|
+
/**
|
|
2
|
+
* IMPORTS
|
|
3
|
+
*/
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
// commons / svg
|
|
7
|
+
import { SvgIconSteeringWheel } from "./steering-wheel";
|
|
8
|
+
import { SvgIconCheckBoxFill } from "./check-box-fill";
|
|
9
|
+
import { SvgIconCheckBoxOutline } from "./check-box-outline";
|
|
10
|
+
import { SvgIconCameraPlus } from "./camera-plus";
|
|
11
|
+
import { SvgIconMoonStars } from "./moon-stars";
|
|
12
|
+
import { SvgIconCallBell } from "./call-bell";
|
|
13
|
+
import { SvgIconSteeringWheelFill } from "./steering-wheel-fill";
|
|
14
|
+
import { SvgIconTrophy } from "./trophy";
|
|
15
|
+
import { IconShoppingCart } from "./shopping-cart";
|
|
16
|
+
import { IconCreditCard } from "./credit-card";
|
|
17
|
+
import { IconFileText } from "./file-text";
|
|
18
|
+
import { IconTruck } from "./truck";
|
|
19
|
+
import { IconPackageCheck } from "./package-check";
|
|
20
|
+
import { SvgIconEyeSlash } from "./eye-slash";
|
|
21
|
+
import { SvgIconCalendar } from "./calendar";
|
|
22
|
+
import { SvgIconCurrency } from "./currency";
|
|
23
|
+
import { SvgIconEye } from "./eye";
|
|
24
|
+
import { SvgIconGasPump } from "./gas-pump";
|
|
25
|
+
import { SvgIconGauge } from "./gauge";
|
|
26
|
+
import { SvgIconGear } from "./gear";
|
|
27
|
+
import { SvgIconTimer } from "./timer";
|
|
28
|
+
import { SvgIconNotePencil } from "./note-pincel";
|
|
29
|
+
import { SvgIconCheckCircle } from "./check-circle";
|
|
30
|
+
import { SvgIconArrowLeft } from "./arrow-left";
|
|
31
|
+
import { SvgIconBluetooth } from "./bluetooth";
|
|
32
|
+
import { SvgIconBluetoothConnected } from "./bluetooth-connected";
|
|
33
|
+
import { SvgIconList } from "./list";
|
|
34
|
+
import { SvgIconWiFiHigh } from "./wifi-high";
|
|
35
|
+
import { SvgIconWiFiX } from "./wifi-x";
|
|
36
|
+
import { SvgIconArrowDropDown } from "./arrow-drop-down";
|
|
37
|
+
import { SvgIconClosed } from "./closed";
|
|
38
|
+
import { SvgPackage } from "./package";
|
|
39
|
+
import { SvgChartBar } from "./chart-bar";
|
|
40
|
+
import { SvgTruckTrailer } from "./truck-trailer";
|
|
41
|
+
|
|
42
|
+
// typing
|
|
43
|
+
import { ISvgProps } from "./interface";
|
|
44
|
+
|
|
45
|
+
// styles
|
|
46
|
+
import { theme } from "../../styles/theme/theme";
|
|
47
|
+
|
|
48
|
+
const Icons: React.FC<ISvgProps> = ({ icon, color, size }) => {
|
|
49
|
+
switch (icon) {
|
|
50
|
+
case "STEERING_WHEEL":
|
|
51
|
+
return <SvgIconSteeringWheel icon="STEERING_WHEEL" color={color} size={size} />;
|
|
52
|
+
|
|
53
|
+
case "CHECK_BOX_FILL":
|
|
54
|
+
return <SvgIconCheckBoxFill icon="CHECK_BOX_FILL" color={color} size={size} />;
|
|
55
|
+
|
|
56
|
+
case "CHECK_BOX_OUTLINE":
|
|
57
|
+
return <SvgIconCheckBoxOutline icon="CHECK_BOX_OUTLINE" color={color} size={size} />;
|
|
58
|
+
|
|
59
|
+
case "CAMERA_PLUS":
|
|
60
|
+
return <SvgIconCameraPlus color={color} size={size} icon={"CAMERA_PLUS"} />;
|
|
61
|
+
|
|
62
|
+
case "MOON_STARS":
|
|
63
|
+
return <SvgIconMoonStars color={color} size={size} icon={"MOON_STARS"} />;
|
|
64
|
+
|
|
65
|
+
case "CALL_BELL":
|
|
66
|
+
return <SvgIconCallBell color={color} size={size} icon={"CALL_BELL"} />;
|
|
67
|
+
|
|
68
|
+
case "STEERING_WHEEL_FILL":
|
|
69
|
+
return <SvgIconSteeringWheelFill color={color} size={size} icon={"STEERING_WHEEL_FILL"} />;
|
|
70
|
+
|
|
71
|
+
case "TROPHY":
|
|
72
|
+
return <SvgIconTrophy color={theme.colors.orange[150]} size={size} icon={"TROPHY"} />;
|
|
73
|
+
|
|
74
|
+
case "SHOPPING_CART":
|
|
75
|
+
return <IconShoppingCart icon={"SHOPPING_CART"} />;
|
|
76
|
+
|
|
77
|
+
case "CREDIT_CARD":
|
|
78
|
+
return <IconCreditCard icon={"CREDIT_CARD"} />;
|
|
79
|
+
|
|
80
|
+
case "FILE_TEXT":
|
|
81
|
+
return <IconFileText icon={"FILE_TEXT"} />;
|
|
82
|
+
|
|
83
|
+
case "TRUCK":
|
|
84
|
+
return <IconTruck icon={"TRUCK"} />;
|
|
85
|
+
|
|
86
|
+
case "PACKAGE_CHECK":
|
|
87
|
+
return <IconPackageCheck icon={"PACKAGE_CHECK"} />;
|
|
88
|
+
|
|
89
|
+
case "EYE_SLASH":
|
|
90
|
+
return <SvgIconEyeSlash color={color} size={size} icon={"EYE_SLASH"} />;
|
|
91
|
+
|
|
92
|
+
case "EYE":
|
|
93
|
+
return <SvgIconEye color={color} size={size} icon={"EYE"} />;
|
|
94
|
+
|
|
95
|
+
case "CALENDAR":
|
|
96
|
+
return <SvgIconCalendar color={color} size={size} icon={"CALENDAR"} />;
|
|
97
|
+
|
|
98
|
+
case "TIMER":
|
|
99
|
+
return <SvgIconTimer color={color} size={size} icon={"TIMER"} />;
|
|
100
|
+
|
|
101
|
+
case "GEAR":
|
|
102
|
+
return <SvgIconGear color={color} size={size} icon={"GEAR"} />;
|
|
103
|
+
|
|
104
|
+
case "CURRENCY":
|
|
105
|
+
return <SvgIconCurrency color={color} size={size} icon={"CURRENCY"} />;
|
|
106
|
+
|
|
107
|
+
case "GAUGE":
|
|
108
|
+
return <SvgIconGauge color={color} size={size} icon={"GAUGE"} />;
|
|
109
|
+
|
|
110
|
+
case "GAS_PUMP":
|
|
111
|
+
return <SvgIconGasPump color={color} size={size} icon={"GAS_PUMP"} />;
|
|
112
|
+
|
|
113
|
+
case "ARROW_LEFT":
|
|
114
|
+
return <SvgIconArrowLeft color={color} size={size} icon={"ARROW_LEFT"} />;
|
|
115
|
+
|
|
116
|
+
case "BLUETOOTH":
|
|
117
|
+
return <SvgIconBluetooth color={color} size={size} icon={"BLUETOOTH"} />;
|
|
118
|
+
|
|
119
|
+
case "BLUETOOTH_CONNECTED":
|
|
120
|
+
return <SvgIconBluetoothConnected color={color} size={size} icon={"BLUETOOTH_CONNECTED"} />;
|
|
121
|
+
|
|
122
|
+
case "LIST":
|
|
123
|
+
return <SvgIconList color={color} size={size} icon={"LIST"} />;
|
|
124
|
+
|
|
125
|
+
case "WIFI_HIGH":
|
|
126
|
+
return <SvgIconWiFiHigh color={color} size={size} icon={"WIFI_HIGH"} />;
|
|
127
|
+
|
|
128
|
+
case "WIFI_X":
|
|
129
|
+
return <SvgIconWiFiX color={color} size={size} icon={"WIFI_X"} />;
|
|
130
|
+
|
|
131
|
+
case "NOTE_PINCEL":
|
|
132
|
+
return <SvgIconNotePencil color={color} size={size} icon={"NOTE_PINCEL"} />;
|
|
133
|
+
|
|
134
|
+
case "CHECK_CIRCLE":
|
|
135
|
+
return <SvgIconCheckCircle color={color} size={size} icon={"CHECK_CIRCLE"} />;
|
|
136
|
+
|
|
137
|
+
case "ARROW_DROP_DOWN":
|
|
138
|
+
return <SvgIconArrowDropDown color={color} size={size} icon={"ARROW_DROP_DOWN"} />;
|
|
139
|
+
|
|
140
|
+
case "CLOSED":
|
|
141
|
+
return <SvgIconClosed color={color} size={size} icon={"CLOSED"} />;
|
|
142
|
+
|
|
143
|
+
default:
|
|
144
|
+
return <SvgIconCameraPlus color={color} size={size} icon={"CAMERA_PLUS"} />;
|
|
145
|
+
}
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
const IconsMenuItems: React.FC<ISvgProps> = ({ icon, color, size }) => {
|
|
149
|
+
switch (icon) {
|
|
150
|
+
case "COIL":
|
|
151
|
+
return <SvgPackage color={color} size={size} icon={"COIL"} />;
|
|
152
|
+
case "LOADING":
|
|
153
|
+
return <SvgTruckTrailer color={color} size={size} icon={"LOADING"} />;
|
|
154
|
+
|
|
155
|
+
case "HISTORY":
|
|
156
|
+
return <SvgChartBar color={color} size={size} icon={"HISTORY"} />;
|
|
157
|
+
|
|
158
|
+
default:
|
|
159
|
+
return <SvgPackage color={color} size={size} icon={"COIL"} />;
|
|
160
|
+
}
|
|
161
|
+
};
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* EXPORTS
|
|
165
|
+
*/
|
|
166
|
+
|
|
167
|
+
export { Icons, IconsMenuItems };
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* IMPORTS
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
import { SvgProps } from "react-native-svg";
|
|
6
|
-
import { SVG_NAME } from "./constants";
|
|
7
|
-
|
|
8
|
-
interface ISvgProps extends SvgProps {
|
|
9
|
-
width?: number;
|
|
10
|
-
height?: number;
|
|
11
|
-
color?: string;
|
|
12
|
-
size?: number;
|
|
13
|
-
icon: keyof typeof SVG_NAME;
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* EXPORTS
|
|
17
|
-
*/
|
|
18
|
-
export { ISvgProps };
|
|
1
|
+
/**
|
|
2
|
+
* IMPORTS
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import { SvgProps } from "react-native-svg";
|
|
6
|
+
import { SVG_NAME } from "./constants";
|
|
7
|
+
|
|
8
|
+
interface ISvgProps extends SvgProps {
|
|
9
|
+
width?: number;
|
|
10
|
+
height?: number;
|
|
11
|
+
color?: string;
|
|
12
|
+
size?: number;
|
|
13
|
+
icon: keyof typeof SVG_NAME;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* EXPORTS
|
|
17
|
+
*/
|
|
18
|
+
export { ISvgProps };
|
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* IMPORTS
|
|
3
|
-
*/
|
|
4
|
-
import * as React from "react";
|
|
5
|
-
import Svg, { Path, G, Defs, Rect, ClipPath } from "react-native-svg";
|
|
6
|
-
|
|
7
|
-
//typings
|
|
8
|
-
import { ISvgProps } from "../interface";
|
|
9
|
-
|
|
10
|
-
const SvgIconList: React.FC<ISvgProps> = ({ color, size }) => (
|
|
11
|
-
<Svg
|
|
12
|
-
width={size ?? 28}
|
|
13
|
-
height={size ?? 28}
|
|
14
|
-
viewBox="0 0 28 28"
|
|
15
|
-
fill={"none"}
|
|
16
|
-
//@ts-ignore
|
|
17
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
-
>
|
|
19
|
-
<G clip-path="url(#clip0_627_88)">
|
|
20
|
-
<Path
|
|
21
|
-
d="M5.43347 16.557H27.4335"
|
|
22
|
-
stroke={color ?? "#fff"}
|
|
23
|
-
stroke-width="1.5"
|
|
24
|
-
stroke-linecap="round"
|
|
25
|
-
stroke-linejoin="round"
|
|
26
|
-
/>
|
|
27
|
-
<Path
|
|
28
|
-
d="M5.43347 8.55701H27.4335"
|
|
29
|
-
stroke={color ?? "#fff"}
|
|
30
|
-
stroke-width="1.5"
|
|
31
|
-
stroke-linecap="round"
|
|
32
|
-
stroke-linejoin="round"
|
|
33
|
-
/>
|
|
34
|
-
<Path
|
|
35
|
-
d="M5.43347 24.557H27.4335"
|
|
36
|
-
stroke={color ?? "#fff"}
|
|
37
|
-
stroke-width="1.5"
|
|
38
|
-
stroke-linecap="round"
|
|
39
|
-
stroke-linejoin="round"
|
|
40
|
-
/>
|
|
41
|
-
</G>
|
|
42
|
-
<Defs>
|
|
43
|
-
<ClipPath id="clip0_627_88">
|
|
44
|
-
<Rect
|
|
45
|
-
width={size ?? 28}
|
|
46
|
-
height={size ?? 28}
|
|
47
|
-
fill="white"
|
|
48
|
-
transform="translate(0.433472 0.557007)"
|
|
49
|
-
/>
|
|
50
|
-
</ClipPath>
|
|
51
|
-
</Defs>
|
|
52
|
-
</Svg>
|
|
53
|
-
);
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* EXPORTS
|
|
57
|
-
*/
|
|
58
|
-
export { SvgIconList };
|
|
1
|
+
/**
|
|
2
|
+
* IMPORTS
|
|
3
|
+
*/
|
|
4
|
+
import * as React from "react";
|
|
5
|
+
import Svg, { Path, G, Defs, Rect, ClipPath } from "react-native-svg";
|
|
6
|
+
|
|
7
|
+
//typings
|
|
8
|
+
import { ISvgProps } from "../interface";
|
|
9
|
+
|
|
10
|
+
const SvgIconList: React.FC<ISvgProps> = ({ color, size }) => (
|
|
11
|
+
<Svg
|
|
12
|
+
width={size ?? 28}
|
|
13
|
+
height={size ?? 28}
|
|
14
|
+
viewBox="0 0 28 28"
|
|
15
|
+
fill={"none"}
|
|
16
|
+
//@ts-ignore
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
>
|
|
19
|
+
<G clip-path="url(#clip0_627_88)">
|
|
20
|
+
<Path
|
|
21
|
+
d="M5.43347 16.557H27.4335"
|
|
22
|
+
stroke={color ?? "#fff"}
|
|
23
|
+
stroke-width="1.5"
|
|
24
|
+
stroke-linecap="round"
|
|
25
|
+
stroke-linejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
<Path
|
|
28
|
+
d="M5.43347 8.55701H27.4335"
|
|
29
|
+
stroke={color ?? "#fff"}
|
|
30
|
+
stroke-width="1.5"
|
|
31
|
+
stroke-linecap="round"
|
|
32
|
+
stroke-linejoin="round"
|
|
33
|
+
/>
|
|
34
|
+
<Path
|
|
35
|
+
d="M5.43347 24.557H27.4335"
|
|
36
|
+
stroke={color ?? "#fff"}
|
|
37
|
+
stroke-width="1.5"
|
|
38
|
+
stroke-linecap="round"
|
|
39
|
+
stroke-linejoin="round"
|
|
40
|
+
/>
|
|
41
|
+
</G>
|
|
42
|
+
<Defs>
|
|
43
|
+
<ClipPath id="clip0_627_88">
|
|
44
|
+
<Rect
|
|
45
|
+
width={size ?? 28}
|
|
46
|
+
height={size ?? 28}
|
|
47
|
+
fill="white"
|
|
48
|
+
transform="translate(0.433472 0.557007)"
|
|
49
|
+
/>
|
|
50
|
+
</ClipPath>
|
|
51
|
+
</Defs>
|
|
52
|
+
</Svg>
|
|
53
|
+
);
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* EXPORTS
|
|
57
|
+
*/
|
|
58
|
+
export { SvgIconList };
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* IMPORTS
|
|
3
|
-
*/
|
|
4
|
-
import * as React from "react";
|
|
5
|
-
import Svg, { Path } from "react-native-svg";
|
|
6
|
-
|
|
7
|
-
//typings
|
|
8
|
-
import { ISvgProps } from "../interface";
|
|
9
|
-
|
|
10
|
-
const SvgIconMoonStars: React.FC<ISvgProps> = ({ color, size }) => (
|
|
11
|
-
<Svg
|
|
12
|
-
//@ts-ignore
|
|
13
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
-
width={size ?? 24}
|
|
15
|
-
height={size ?? 24}
|
|
16
|
-
fill="none"
|
|
17
|
-
viewBox="0 0 24 24"
|
|
18
|
-
>
|
|
19
|
-
<Path
|
|
20
|
-
fill={color ?? "#050022"}
|
|
21
|
-
d="M22.5 9a.75.75 0 0 1-.75.75h-1.5v1.5a.75.75 0 1 1-1.5 0v-1.5h-1.5a.75.75 0 1 1 0-1.5h1.5v-1.5a.75.75 0 1 1 1.5 0v1.5h1.5a.75.75 0 0 1 .75.75m-9-3.75h.75V6a.75.75 0 1 0 1.5 0v-.75h.75a.75.75 0 1 0 0-1.5h-.75V3a.75.75 0 1 0-1.5 0v.75h-.75a.75.75 0 1 0 0 1.5m6.822 9.094a.75.75 0 0 1 .134.75 9.001 9.001 0 0 1-17.09-.578A9 9 0 0 1 8.914 3.544a.75.75 0 0 1 .994.85 8.256 8.256 0 0 0 9.7 9.7.75.75 0 0 1 .715.25m-1.818 1.395q-.251.012-.504.013A9.76 9.76 0 0 1 8.25 6c0-.168 0-.337.013-.504a7.5 7.5 0 1 0 10.241 10.24z"
|
|
22
|
-
></Path>
|
|
23
|
-
</Svg>
|
|
24
|
-
);
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
* EXPORTS
|
|
28
|
-
*/
|
|
29
|
-
export { SvgIconMoonStars };
|
|
1
|
+
/**
|
|
2
|
+
* IMPORTS
|
|
3
|
+
*/
|
|
4
|
+
import * as React from "react";
|
|
5
|
+
import Svg, { Path } from "react-native-svg";
|
|
6
|
+
|
|
7
|
+
//typings
|
|
8
|
+
import { ISvgProps } from "../interface";
|
|
9
|
+
|
|
10
|
+
const SvgIconMoonStars: React.FC<ISvgProps> = ({ color, size }) => (
|
|
11
|
+
<Svg
|
|
12
|
+
//@ts-ignore
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
width={size ?? 24}
|
|
15
|
+
height={size ?? 24}
|
|
16
|
+
fill="none"
|
|
17
|
+
viewBox="0 0 24 24"
|
|
18
|
+
>
|
|
19
|
+
<Path
|
|
20
|
+
fill={color ?? "#050022"}
|
|
21
|
+
d="M22.5 9a.75.75 0 0 1-.75.75h-1.5v1.5a.75.75 0 1 1-1.5 0v-1.5h-1.5a.75.75 0 1 1 0-1.5h1.5v-1.5a.75.75 0 1 1 1.5 0v1.5h1.5a.75.75 0 0 1 .75.75m-9-3.75h.75V6a.75.75 0 1 0 1.5 0v-.75h.75a.75.75 0 1 0 0-1.5h-.75V3a.75.75 0 1 0-1.5 0v.75h-.75a.75.75 0 1 0 0 1.5m6.822 9.094a.75.75 0 0 1 .134.75 9.001 9.001 0 0 1-17.09-.578A9 9 0 0 1 8.914 3.544a.75.75 0 0 1 .994.85 8.256 8.256 0 0 0 9.7 9.7.75.75 0 0 1 .715.25m-1.818 1.395q-.251.012-.504.013A9.76 9.76 0 0 1 8.25 6c0-.168 0-.337.013-.504a7.5 7.5 0 1 0 10.241 10.24z"
|
|
22
|
+
></Path>
|
|
23
|
+
</Svg>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* EXPORTS
|
|
28
|
+
*/
|
|
29
|
+
export { SvgIconMoonStars };
|
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* IMPORTS
|
|
3
|
-
*/
|
|
4
|
-
import * as React from "react";
|
|
5
|
-
import Svg, { Path, G, Defs, ClipPath } from "react-native-svg";
|
|
6
|
-
|
|
7
|
-
//typings
|
|
8
|
-
import { ISvgProps } from "../interface";
|
|
9
|
-
|
|
10
|
-
const SvgIconNotePencil: React.FC<ISvgProps> = ({ color, size }) => (
|
|
11
|
-
<Svg
|
|
12
|
-
//@ts-ignore
|
|
13
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
-
width={size ?? 24}
|
|
15
|
-
height={size ?? 24}
|
|
16
|
-
fill="none"
|
|
17
|
-
viewBox="0 0 25 25"
|
|
18
|
-
>
|
|
19
|
-
<G
|
|
20
|
-
stroke={color ?? "#050022"}
|
|
21
|
-
strokeLinecap="round"
|
|
22
|
-
strokeLinejoin="round"
|
|
23
|
-
strokeWidth="2"
|
|
24
|
-
clipPath="url(#clip0_5169_183)"
|
|
25
|
-
>
|
|
26
|
-
<Path d="M12.047 15.928h-3v-3l9-9 3 3-9 9zM15.797 6.178l3 3"></Path>
|
|
27
|
-
<Path d="M20.297 12.928v7.5a.75.75 0 01-.75.75h-15a.75.75 0 01-.75-.75v-15a.75.75 0 01.75-.75h7.5"></Path>
|
|
28
|
-
</G>
|
|
29
|
-
<Defs>
|
|
30
|
-
<ClipPath id="clip0_5169_183">
|
|
31
|
-
<Path fill="#fff" d="M0 0H24V24H0z" transform="translate(.047 .928)"></Path>
|
|
32
|
-
</ClipPath>
|
|
33
|
-
</Defs>
|
|
34
|
-
</Svg>
|
|
35
|
-
);
|
|
36
|
-
|
|
37
|
-
/**
|
|
38
|
-
* EXPORTS
|
|
39
|
-
*/
|
|
40
|
-
export { SvgIconNotePencil };
|
|
1
|
+
/**
|
|
2
|
+
* IMPORTS
|
|
3
|
+
*/
|
|
4
|
+
import * as React from "react";
|
|
5
|
+
import Svg, { Path, G, Defs, ClipPath } from "react-native-svg";
|
|
6
|
+
|
|
7
|
+
//typings
|
|
8
|
+
import { ISvgProps } from "../interface";
|
|
9
|
+
|
|
10
|
+
const SvgIconNotePencil: React.FC<ISvgProps> = ({ color, size }) => (
|
|
11
|
+
<Svg
|
|
12
|
+
//@ts-ignore
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
width={size ?? 24}
|
|
15
|
+
height={size ?? 24}
|
|
16
|
+
fill="none"
|
|
17
|
+
viewBox="0 0 25 25"
|
|
18
|
+
>
|
|
19
|
+
<G
|
|
20
|
+
stroke={color ?? "#050022"}
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
strokeWidth="2"
|
|
24
|
+
clipPath="url(#clip0_5169_183)"
|
|
25
|
+
>
|
|
26
|
+
<Path d="M12.047 15.928h-3v-3l9-9 3 3-9 9zM15.797 6.178l3 3"></Path>
|
|
27
|
+
<Path d="M20.297 12.928v7.5a.75.75 0 01-.75.75h-15a.75.75 0 01-.75-.75v-15a.75.75 0 01.75-.75h7.5"></Path>
|
|
28
|
+
</G>
|
|
29
|
+
<Defs>
|
|
30
|
+
<ClipPath id="clip0_5169_183">
|
|
31
|
+
<Path fill="#fff" d="M0 0H24V24H0z" transform="translate(.047 .928)"></Path>
|
|
32
|
+
</ClipPath>
|
|
33
|
+
</Defs>
|
|
34
|
+
</Svg>
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* EXPORTS
|
|
39
|
+
*/
|
|
40
|
+
export { SvgIconNotePencil };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* IMPORTS
|
|
3
|
+
*/
|
|
4
|
+
import * as React from "react";
|
|
5
|
+
import Svg, { Path } from "react-native-svg";
|
|
6
|
+
|
|
7
|
+
//typings
|
|
8
|
+
import { ISvgProps } from "../interface";
|
|
9
|
+
|
|
10
|
+
const SvgPackage: React.FC<ISvgProps> = ({ color, size }) => (
|
|
11
|
+
<Svg
|
|
12
|
+
//@ts-ignore
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
width={size ?? "32"}
|
|
15
|
+
height={size ?? "32"}
|
|
16
|
+
fill="none"
|
|
17
|
+
viewBox={`0 0 ${size ?? "32"} ${size ?? "32"}`}
|
|
18
|
+
>
|
|
19
|
+
<Path
|
|
20
|
+
fill={color ?? "#fff"}
|
|
21
|
+
d="m27.96 8.269-11-6.019a1.99 1.99 0 0 0-1.92 0l-11 6.021A2 2 0 0 0 3 10.021v11.955a2 2 0 0 0 1.04 1.75l11 6.022a1.99 1.99 0 0 0 1.92 0l11-6.022a2 2 0 0 0 1.04-1.75V10.023a2 2 0 0 0-1.04-1.754M16 4l10.044 5.5-3.723 2.036-10.044-5.5zm0 11L5.956 9.5l4.239-2.321 10.044 5.5zm11 6.981-10 5.474V16.729l4-2.189V19a1 1 0 0 0 2 0v-5.555l4-2.189v10.725"
|
|
22
|
+
></Path>
|
|
23
|
+
</Svg>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* EXPORTS
|
|
28
|
+
*/
|
|
29
|
+
export { SvgPackage };
|