react-native-exp-fig 0.1.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.
Files changed (96) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +119 -0
  3. package/package.json +200 -0
  4. package/react-native.config.js +4 -0
  5. package/src/assets/fonts/Inter-Black.ttf +0 -0
  6. package/src/assets/fonts/Inter-Bold.ttf +0 -0
  7. package/src/assets/fonts/Inter-ExtraBold.ttf +0 -0
  8. package/src/assets/fonts/Inter-ExtraLight.ttf +0 -0
  9. package/src/assets/fonts/Inter-Light.ttf +0 -0
  10. package/src/assets/fonts/Inter-Medium.ttf +0 -0
  11. package/src/assets/fonts/Inter-Regular.ttf +0 -0
  12. package/src/assets/fonts/Inter-SemiBold.ttf +0 -0
  13. package/src/assets/fonts/Inter-Thin.ttf +0 -0
  14. package/src/common/icons-svg/arrow-drop-down/index.tsx +28 -0
  15. package/src/common/icons-svg/arrow-left/index.tsx +32 -0
  16. package/src/common/icons-svg/bluetooth/index.tsx +37 -0
  17. package/src/common/icons-svg/bluetooth-connected/index.tsx +41 -0
  18. package/src/common/icons-svg/calendar/index.tsx +40 -0
  19. package/src/common/icons-svg/call-bell/index.tsx +29 -0
  20. package/src/common/icons-svg/camera-plus/index.tsx +40 -0
  21. package/src/common/icons-svg/check-box-fill/index.tsx +30 -0
  22. package/src/common/icons-svg/check-box-outline/index.tsx +30 -0
  23. package/src/common/icons-svg/check-circle/index.tsx +27 -0
  24. package/src/common/icons-svg/closed/index.tsx +34 -0
  25. package/src/common/icons-svg/constants/index.ts +43 -0
  26. package/src/common/icons-svg/credit-card/index.tsx +32 -0
  27. package/src/common/icons-svg/currency/index.tsx +39 -0
  28. package/src/common/icons-svg/eye/index.tsx +31 -0
  29. package/src/common/icons-svg/eye-slash/index.tsx +31 -0
  30. package/src/common/icons-svg/file-text/index.tsx +39 -0
  31. package/src/common/icons-svg/gas-pump/index.tsx +39 -0
  32. package/src/common/icons-svg/gauge/index.tsx +39 -0
  33. package/src/common/icons-svg/gear/index.tsx +39 -0
  34. package/src/common/icons-svg/index.tsx +149 -0
  35. package/src/common/icons-svg/interface.d.ts +18 -0
  36. package/src/common/icons-svg/list/index.tsx +58 -0
  37. package/src/common/icons-svg/moon-stars/index.tsx +29 -0
  38. package/src/common/icons-svg/note-pincel/index.tsx +40 -0
  39. package/src/common/icons-svg/package-check/index.tsx +45 -0
  40. package/src/common/icons-svg/shopping-cart/index.tsx +39 -0
  41. package/src/common/icons-svg/steering-wheel/index.tsx +49 -0
  42. package/src/common/icons-svg/steering-wheel-fill/index.tsx +36 -0
  43. package/src/common/icons-svg/timer/index.tsx +39 -0
  44. package/src/common/icons-svg/trophy/index.tsx +29 -0
  45. package/src/common/icons-svg/truck/index.tsx +39 -0
  46. package/src/common/icons-svg/wifi-high/index.tsx +43 -0
  47. package/src/common/icons-svg/wifi-x/index.tsx +50 -0
  48. package/src/components/box/index.tsx +47 -0
  49. package/src/components/box/interface.d.ts +31 -0
  50. package/src/components/box/styles.ts +21 -0
  51. package/src/components/button/index.tsx +61 -0
  52. package/src/components/button/interface.d.ts +40 -0
  53. package/src/components/button/styles.ts +34 -0
  54. package/src/components/capture-photo/index.tsx +125 -0
  55. package/src/components/capture-photo/interface.d.ts +44 -0
  56. package/src/components/capture-photo/styles.ts +24 -0
  57. package/src/components/card-hours/index.tsx +118 -0
  58. package/src/components/card-hours/interface.d.ts +37 -0
  59. package/src/components/card-scheduled-journey/index.tsx +138 -0
  60. package/src/components/card-scheduled-journey/interface.ts +42 -0
  61. package/src/components/card-scheduled-journey/styles.ts +26 -0
  62. package/src/components/header-profile/index.tsx +128 -0
  63. package/src/components/header-profile/interface.d.ts +52 -0
  64. package/src/components/input/index.tsx +180 -0
  65. package/src/components/input/interface.d.ts +55 -0
  66. package/src/components/input/styles.ts +23 -0
  67. package/src/components/scheduled-journey-indicators/index.tsx +99 -0
  68. package/src/components/scheduled-journey-indicators/interface.d.ts +18 -0
  69. package/src/components/selects/select-option/index.tsx +104 -0
  70. package/src/components/selects/select-option/interface.d.ts +18 -0
  71. package/src/components/selects/select-option/styles.ts +75 -0
  72. package/src/components/step-indicator/helpers/get-icon-by-status.tsx +20 -0
  73. package/src/components/step-indicator/index.tsx +164 -0
  74. package/src/components/step-indicator/interface.d.ts +34 -0
  75. package/src/components/step-indicator/styles.ts +67 -0
  76. package/src/components/typography/index.tsx +67 -0
  77. package/src/components/typography/interface.d.ts +102 -0
  78. package/src/components/typography/styles.ts +34 -0
  79. package/src/index.tsx +23 -0
  80. package/src/stories/box/box.stories.tsx +106 -0
  81. package/src/stories/button/button.stories.tsx +143 -0
  82. package/src/stories/capture-photo/capture-photo.stories.tsx +170 -0
  83. package/src/stories/card-hours/card-hours.stories.tsx +102 -0
  84. package/src/stories/card-scheduled-journey/card-scheduled-journey.stories.tsx +101 -0
  85. package/src/stories/header-profile/header-profile.stories.tsx +84 -0
  86. package/src/stories/input/input.stories.tsx +286 -0
  87. package/src/stories/scheduled-journey-indicators/sheduled-journey-indicators.stories.tsx +74 -0
  88. package/src/stories/select-option/select-option.stories.tsx +46 -0
  89. package/src/stories/step-indicator/step-indicator.stories.tsx +116 -0
  90. package/src/stories/typography/typography.stories.tsx +146 -0
  91. package/src/styles/global/interface.d.ts +131 -0
  92. package/src/styles/global/styles.ts +63 -0
  93. package/src/styles/global/theme-provider.tsx +10 -0
  94. package/src/styles/theme/theme.ts +156 -0
  95. package/src/utils/format-data/index.ts +14 -0
  96. package/src/utils/mutiply/index.ts +3 -0
package/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Weverson-Luan
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ of this software and associated documentation files (the "Software"), to deal
6
+ in the Software without restriction, including without limitation the rights
7
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is
9
+ furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all
12
+ copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,119 @@
1
+ # React Native ExpFig 🎯
2
+
3
+ Componetes React Native para Android
4
+
5
+ ## Características 🗳️
6
+
7
+ 🚀 Project imperativo </br>
8
+ 📦 Muito leve (~xxx kB) </br>
9
+ ⌨️ Compatível com android </br>
10
+ 🎨 Layouts personalizáveis </br>
11
+ 🔧 Configuração flexível </br>
12
+
13
+ ## Documentação 📋
14
+
15
+ ExpFig é um framework móvel de código fechado para desenvolvimento de componentes de interface e front-end para aplicativos, usando ReactNative, TypeScript, JavaScript, Storybook e React Native Testing Library melhorando a experiência do usuário em um aplicativo amigável e responsivo.
16
+
17
+ ## Contribuidores 👩‍💻
18
+
19
+ Este projeto está sendo mantido por (02) desenvolvedores, e qualquer ajuda com problemas e solicitações de pull é sempre bem-vinda. Se você puder e quiser contribuir, entre em contato conosco pelo whats (xx) xxxx-xxxx
20
+
21
+ ### Pré-requisitos
22
+
23
+ Antes de começar, você precisará ter as seguintes ferramentas instaladas em sua máquina:
24
+
25
+ - [Git](https://git-scm.com)
26
+ - [Node.js 20+](https://nodejs.org/en/)
27
+ - [Java](https://www.java.com/pt-BR/download/manual.jsp)
28
+
29
+ ## Compatibilidades
30
+
31
+ Compatível com react-native >= 0.72.3
32
+
33
+ ## Instalação 🛠️
34
+
35
+ ```
36
+ yarn add expfig-ui
37
+ or
38
+ npm i expfig-ui
39
+ ```
40
+
41
+ ## Projeto Clone 🪞
42
+
43
+ ```# Clone this repository
44
+ $ git clone https://github.com/expfig/expfig-ui.git
45
+
46
+ # Access the project folder cmd/terminal
47
+ $ cd expfig-ui
48
+
49
+ # Install the dependencies
50
+ $ yarn install
51
+
52
+ ```
53
+
54
+ ## StoryBook
55
+
56
+ ```
57
+ yarn storybook
58
+ ```
59
+
60
+ ## Testing
61
+
62
+ ```
63
+ yarn test
64
+ ```
65
+
66
+ ## Rodar o projeto de example
67
+
68
+ ```
69
+ cd example
70
+ yarn start
71
+ ```
72
+
73
+ ## Usando Componente 🎇
74
+
75
+ ```
76
+
77
+ <Typography
78
+ text={`Resultado:${result}`}
79
+ size={18}
80
+ fontFamily="Inter-Medium"
81
+ lineHeight={24}
82
+ letterSpacing={0.5}
83
+ marginBottom={8}
84
+ />
85
+
86
+ <Button
87
+ title="Cliclou"
88
+ onPress={() => Alert.alert('Cliclou')}
89
+ width={'100%'}
90
+ height={45}
91
+ backgroundColor="#050022"
92
+ buttonTextStyle={{
93
+ color: '#fff',
94
+ fontFamily: 'Inter-Medium',
95
+ fontSize: 18,
96
+ fontWeight: '500',
97
+ }}
98
+ flexStyle={{
99
+ flexDirection: 'row',
100
+ alignItems: 'center',
101
+ justifyContent: 'center',
102
+ }}
103
+ borderStyled={{
104
+ borderWidth: 1,
105
+ borderColor: '#050022',
106
+ borderRadius: 8,
107
+ }}
108
+ />
109
+ ```
110
+
111
+ &nbsp;
112
+
113
+ <!--- Describe the project license --->
114
+
115
+ ## ©️ License
116
+
117
+ Este projeto está sob a licença [MIT](./LICENSE).
118
+
119
+ Feito por [Weverson Luan De Sousa](https://www.linkedin.com/in/weverson-luan-de-sousa-1969a81b0/)
package/package.json ADDED
@@ -0,0 +1,200 @@
1
+ {
2
+ "name": "react-native-exp-fig",
3
+ "version": "0.1.0",
4
+ "description": "Lib para interfaces",
5
+ "source": "./src/index.tsx",
6
+ "main": "./lib/commonjs/index.js",
7
+ "module": "./lib/module/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "import": {
11
+ "types": "./lib/typescript/module/src/index.d.ts",
12
+ "default": "./lib/module/index.js"
13
+ },
14
+ "require": {
15
+ "types": "./lib/typescript/commonjs/src/index.d.ts",
16
+ "default": "./lib/commonjs/index.js"
17
+ }
18
+ }
19
+ },
20
+ "files": [
21
+ "src",
22
+ "lib",
23
+ "android",
24
+ "ios",
25
+ "cpp",
26
+ "*.podspec",
27
+ "react-native.config.js",
28
+ "!ios/build",
29
+ "!android/build",
30
+ "!android/gradle",
31
+ "!android/gradlew",
32
+ "!android/gradlew.bat",
33
+ "!android/local.properties",
34
+ "!**/__tests__",
35
+ "!**/__fixtures__",
36
+ "!**/__mocks__",
37
+ "!**/.*"
38
+ ],
39
+ "scripts": {
40
+ "example": "yarn workspace react-native-exp-fig-example",
41
+ "test": "jest",
42
+ "typecheck": "tsc",
43
+ "lint": "eslint \"**/*.{js,ts,tsx}\"",
44
+ "lint:fix": "eslint --fix \"**/*.{js,ts,tsx}\"",
45
+ "clean": "del-cli lib",
46
+ "prepare:bob": "bob build",
47
+ "release": "release-it",
48
+ "storybook": "storybook dev -p 6006",
49
+ "format": "prettier --write .",
50
+ "format:check": "prettier --check .",
51
+ "prepare": "husky"
52
+ },
53
+ "keywords": [
54
+ "react-native",
55
+ "ios",
56
+ "android"
57
+ ],
58
+ "repository": {
59
+ "type": "git",
60
+ "url": "git+https://github.com/Weverson-Luan/react-native-exp-fig.git"
61
+ },
62
+ "author": "Weverson-Luan <wltech2022@gmail.com> (https://github.com/Weverson-Luan)",
63
+ "license": "MIT",
64
+ "bugs": {
65
+ "url": "https://github.com/Weverson-Luan/react-native-exp-fig/issues"
66
+ },
67
+ "homepage": "https://github.com/Weverson-Luan/react-native-exp-fig#readme",
68
+ "publishConfig": {
69
+ "registry": "https://registry.npmjs.org/"
70
+ },
71
+ "devDependencies": {
72
+ "@babel/core": "^7.26.7",
73
+ "@babel/preset-env": "^7.22.20",
74
+ "@babel/preset-react": "^7.26.3",
75
+ "@commitlint/cli": "^19.7.1",
76
+ "@commitlint/config-conventional": "^19.7.1",
77
+ "@evilmartians/lefthook": "^1.5.0",
78
+ "@react-native/eslint-config": "^0.77.0",
79
+ "@release-it/conventional-changelog": "^9.0.2",
80
+ "@storybook/addon-actions": "^8.3.5",
81
+ "@storybook/addon-controls": "^8.3.5",
82
+ "@storybook/addon-essentials": "^8.3.5",
83
+ "@storybook/addon-links": "^8.3.5",
84
+ "@storybook/addon-ondevice-actions": "8.3.10",
85
+ "@storybook/addon-ondevice-backgrounds": "8.3.10",
86
+ "@storybook/addon-ondevice-controls": "8.3.10",
87
+ "@storybook/addon-ondevice-notes": "8.3.10",
88
+ "@storybook/addon-react-native-web": "^0.0.26",
89
+ "@storybook/addon-webpack5-compiler-babel": "^3.0.3",
90
+ "@storybook/addons": "^7.6.17",
91
+ "@storybook/react": "^8.3.5",
92
+ "@storybook/react-native": "^8.5.3",
93
+ "@storybook/react-webpack5": "^8.3.5",
94
+ "@testing-library/jest-native": "^5.4.3",
95
+ "@testing-library/react-native": "^12.3.0",
96
+ "@types/jest": "^29.5.5",
97
+ "@types/react": "^18.2.44",
98
+ "@typescript-eslint/eslint-plugin": "^8.23.0",
99
+ "babel-jest": "^29.7.0",
100
+ "babel-loader": "^9.1.3",
101
+ "babel-plugin-module-resolver": "^5.0.2",
102
+ "babel-plugin-react-docgen-typescript": "^1.5.1",
103
+ "babel-plugin-react-native-web": "^0.19.12",
104
+ "babel-plugin-transform-inline-environment-variables": "^0.4.4",
105
+ "commitlint": "^17.0.2",
106
+ "del-cli": "^5.1.0",
107
+ "eslint": "^9.19.0",
108
+ "eslint-config-prettier": "^10.0.1",
109
+ "eslint-plugin-jest": "^28.11.0",
110
+ "eslint-plugin-prettier": "^5.2.3",
111
+ "eslint-plugin-react": "^7.37.4",
112
+ "eslint-plugin-storybook": "^0.11.2",
113
+ "husky": "^9.1.7",
114
+ "jest": "^29.7.0",
115
+ "prettier": "^3.4.2",
116
+ "react": "18.3.1",
117
+ "react-native": "0.76.6",
118
+ "react-native-builder-bob": "^0.32.0",
119
+ "release-it": "^17.10.0",
120
+ "storybook": "^8.3.5"
121
+ },
122
+ "resolutions": {
123
+ "@types/react": "^18.2.44"
124
+ },
125
+ "peerDependencies": {
126
+ "react": "*",
127
+ "react-native": "*"
128
+ },
129
+ "workspaces": [
130
+ "example"
131
+ ],
132
+ "packageManager": "yarn@3.6.1",
133
+ "release-it": {
134
+ "git": {
135
+ "commitMessage": "chore: release ${version}",
136
+ "tagName": "v${version}"
137
+ },
138
+ "npm": {
139
+ "publish": true
140
+ },
141
+ "github": {
142
+ "release": true
143
+ },
144
+ "plugins": {
145
+ "@release-it/conventional-changelog": {
146
+ "preset": "angular"
147
+ }
148
+ }
149
+ },
150
+ "react-native-builder-bob": {
151
+ "source": "src",
152
+ "output": "lib",
153
+ "targets": [
154
+ [
155
+ "commonjs",
156
+ {
157
+ "esm": true
158
+ }
159
+ ],
160
+ [
161
+ "module",
162
+ {
163
+ "esm": true
164
+ }
165
+ ],
166
+ [
167
+ "typescript",
168
+ {
169
+ "project": "tsconfig.build.json",
170
+ "esm": true
171
+ }
172
+ ]
173
+ ]
174
+ },
175
+ "create-react-native-library": {
176
+ "languages": "js",
177
+ "type": "library",
178
+ "version": "0.47.0"
179
+ },
180
+ "dependencies": {
181
+ "@react-native-async-storage/async-storage": "^2.0.0",
182
+ "@react-native-community/datetimepicker": "^8.2.0",
183
+ "@react-native-community/slider": "^4.5.3",
184
+ "@storybook/test": "^8.3.0",
185
+ "jest-environment-jsdom": "^29.7.0",
186
+ "jest-matcher-utils": "^29.7.0",
187
+ "react": "18.3.1",
188
+ "react-dom": "^18.3.1",
189
+ "react-native": "0.75.4",
190
+ "react-native-gesture-handler": "^2.19.0",
191
+ "react-native-reanimated": "^3.16.7",
192
+ "react-native-safe-area-context": "^4.11.0",
193
+ "react-native-svg": "^15.6.0",
194
+ "react-native-web": "^0.19.12",
195
+ "react-test-renderer": "^18.2.0",
196
+ "ts-jest": "^29.1.1",
197
+ "ts-node": "^10.9.1",
198
+ "typescript": "4.8.4"
199
+ }
200
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable no-undef */
2
+ module.exports = {
3
+ assets: ["./src/assets/fonts", "./.storybook/fonts"],
4
+ };
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,28 @@
1
+ /**
2
+ * IMPORTS
3
+ */
4
+ import React from "react";
5
+ import Svg, { Path } from "react-native-svg";
6
+ /**
7
+ * typings
8
+ */
9
+ import { ISvgProps } from "../interface";
10
+
11
+ const SvgIconArrowDropDown: React.FC<ISvgProps> = ({ size, color, ...res }) => (
12
+ <Svg
13
+ // @ts-expect-error
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ width={size ?? "10"}
16
+ height={size ?? "6"}
17
+ fill="none"
18
+ viewBox="0 0 10 6"
19
+ {...res}
20
+ >
21
+ <Path fill={color ?? "#868686"} d="M5 5.813L0 0h10L5 5.813z"></Path>
22
+ </Svg>
23
+ );
24
+
25
+ /**
26
+ * EXPORTS
27
+ */
28
+ export { SvgIconArrowDropDown };
@@ -0,0 +1,32 @@
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 SvgIconArrowLeft: React.FC<ISvgProps> = ({ color, size }) => (
11
+ <Svg
12
+ //@ts-ignore
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ width={size ?? 21}
15
+ height={size ?? 11}
16
+ fill="none"
17
+ viewBox="0 0 21 10"
18
+ >
19
+ <Path
20
+ stroke={color ?? "#fff"}
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ strokeWidth="2"
24
+ d="M5.078 9L1.067 5m0 0l4.01-4m-4.01 4h18.05"
25
+ ></Path>
26
+ </Svg>
27
+ );
28
+
29
+ /**
30
+ * EXPORTS
31
+ */
32
+ export { SvgIconArrowLeft };
@@ -0,0 +1,37 @@
1
+ /**
2
+ * IMPORTS
3
+ */
4
+ import * as React from "react";
5
+ import Svg, { Path, Defs, G, ClipPath } from "react-native-svg";
6
+ import { ISvgProps } from "../interface";
7
+
8
+ const SvgIconBluetooth: React.FC<ISvgProps> = ({ color, size }) => (
9
+ <Svg
10
+ // @ts-expect-error
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ width={size ?? 24}
13
+ height={size ?? 24}
14
+ fill="none"
15
+ viewBox={`0 0 ${size ?? 24} ${size ?? 24}`}
16
+ >
17
+ <G
18
+ stroke={color ?? "#050022"}
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ strokeWidth="2"
22
+ clipPath="url(#clip0_9131_659)"
23
+ >
24
+ <Path d="M12 3l6 4.5-6 4.5V3zM12 12l6 4.5-6 4.5v-9zM6 7.5l6 4.5M6 16.5l6-4.5"></Path>
25
+ </G>
26
+ <Defs>
27
+ <ClipPath id="clip0_9131_659">
28
+ <Path fill="#fff" d="M0 0H24V24H0z"></Path>
29
+ </ClipPath>
30
+ </Defs>
31
+ </Svg>
32
+ );
33
+
34
+ /**
35
+ * EXPORTS
36
+ */
37
+ export { SvgIconBluetooth };
@@ -0,0 +1,41 @@
1
+ /**
2
+ * IMPORTS
3
+ */
4
+ import * as React from "react";
5
+ import Svg, { Path, Defs, G, ClipPath } from "react-native-svg";
6
+ import { ISvgProps } from "../interface";
7
+
8
+ const SvgIconBluetoothConnected: React.FC<ISvgProps> = ({ color, size }) => (
9
+ <Svg
10
+ //@ts-ignore
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ width={size ?? 24}
13
+ height={size ?? 24}
14
+ fill="none"
15
+ viewBox={`0 0 ${size ?? 24} ${size ?? 24}`}
16
+ >
17
+ <G clipPath="url(#clip0_9125_243)">
18
+ <Path
19
+ stroke={color ?? "#fff"}
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ strokeWidth="2"
23
+ d="M12 3l6 4.5-6 4.5V3zM12 12l6 4.5-6 4.5v-9zM6 7.5l6 4.5M6 16.5l6-4.5"
24
+ ></Path>
25
+ <Path
26
+ fill={color ?? "#fff"}
27
+ d="M5.625 13.125a1.125 1.125 0 100-2.25 1.125 1.125 0 000 2.25zM19.125 13.125a1.125 1.125 0 100-2.25 1.125 1.125 0 000 2.25z"
28
+ ></Path>
29
+ </G>
30
+ <Defs>
31
+ <ClipPath id="clip0_9125_243">
32
+ <Path fill={color ?? "#fff"} d="M0 0H24V24H0z"></Path>
33
+ </ClipPath>
34
+ </Defs>
35
+ </Svg>
36
+ );
37
+
38
+ /**
39
+ * EXPORTS
40
+ */
41
+ export { SvgIconBluetoothConnected };
@@ -0,0 +1,40 @@
1
+ /**
2
+ * IMPORTS
3
+ */
4
+ import * as React from "react";
5
+ import Svg, { Path, Defs, G, ClipPath } from "react-native-svg";
6
+
7
+ // typings
8
+ import { ISvgProps } from "../interface";
9
+
10
+ const SvgIconCalendar: 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 16 16"
18
+ >
19
+ <G
20
+ stroke={color ?? "#050022"}
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ strokeWidth="1.5"
24
+ clipPath="url(#clip0_686_587)"
25
+ >
26
+ <Path d="M13 2.5H3a.5.5 0 00-.5.5v10a.5.5 0 00.5.5h10a.5.5 0 00.5-.5V3a.5.5 0 00-.5-.5zM11 1.5v2M5 1.5v2M2.5 5.5h11"></Path>
27
+ <Path d="M5.5 8l1-.5v4M8.634 8a1 1 0 111.665 1.102L8.5 11.5h2"></Path>
28
+ </G>
29
+ <Defs>
30
+ <ClipPath id="clip0_686_587">
31
+ <Path fill="#fff" d="M0 0H16V16H0z"></Path>
32
+ </ClipPath>
33
+ </Defs>
34
+ </Svg>
35
+ );
36
+
37
+ /**
38
+ * EXPORTS
39
+ */
40
+ export { SvgIconCalendar };
@@ -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 SvgIconCallBell: 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="M2.25 17.25h19.5a.75.75 0 1 0 0-1.5H21v-1.5a9.01 9.01 0 0 0-8.25-8.968V3.75h1.5a.75.75 0 1 0 0-1.5h-4.5a.75.75 0 0 0 0 1.5h1.5v1.532A9.01 9.01 0 0 0 3 14.25v1.5h-.75a.75.75 0 1 0 0 1.5m2.25-3a7.5 7.5 0 0 1 15 0v1.5h-15zm18 5.25a.75.75 0 0 1-.75.75H2.25a.75.75 0 1 1 0-1.5h19.5a.75.75 0 0 1 .75.75"
22
+ ></Path>
23
+ </Svg>
24
+ );
25
+
26
+ /**
27
+ * EXPORTS
28
+ */
29
+ export { SvgIconCallBell };
@@ -0,0 +1,40 @@
1
+ /**
2
+ * IMPORTS
3
+ */
4
+ import * as React from "react";
5
+ import Svg, { Path, Defs, G, ClipPath } from "react-native-svg";
6
+
7
+ //typings
8
+ import { ISvgProps } from "../interface";
9
+
10
+ const SvgIconCameraPlus: React.FC<ISvgProps> = ({ color, size, ...res }) => (
11
+ <Svg
12
+ {...res}
13
+ // @ts-expect-error
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ width={size ?? 24}
16
+ height={size ?? 24}
17
+ fill="none"
18
+ viewBox="0 0 24 24"
19
+ >
20
+ <G
21
+ stroke={color ?? "#050022"}
22
+ strokeLinecap="round"
23
+ strokeLinejoin="round"
24
+ strokeWidth="2"
25
+ clipPath="url(#clip0_862_99)"
26
+ >
27
+ <Path d="M19.5 19.5h-15A1.5 1.5 0 013 18V7.5A1.5 1.5 0 014.5 6h3L9 3.75h6L16.5 6h3A1.5 1.5 0 0121 7.5V18a1.5 1.5 0 01-1.5 1.5zM12 9.75v6M9 12.75h6"></Path>
28
+ </G>
29
+ <Defs>
30
+ <ClipPath id="clip0_862_99">
31
+ <Path fill="#fff" d="M0 0H24V24H0z"></Path>
32
+ </ClipPath>
33
+ </Defs>
34
+ </Svg>
35
+ );
36
+
37
+ /**
38
+ * EXPORTS
39
+ */
40
+ export { SvgIconCameraPlus };
@@ -0,0 +1,30 @@
1
+ /**
2
+ * IMPORTS
3
+ */
4
+ import React from "react";
5
+ import Svg, { Path } from "react-native-svg";
6
+ /**
7
+ * typings
8
+ */
9
+ import { ISvgProps } from "../interface";
10
+
11
+ const SvgIconCheckBoxFill: React.FC<ISvgProps> = ({ color, size, ...res }) => (
12
+ <Svg
13
+ //@ts-ignore
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ width={size ? size : 24}
16
+ height={size ? size : 24}
17
+ fill="none"
18
+ {...res}
19
+ >
20
+ <Path
21
+ fill={color ? color : "#F3F3F3 "}
22
+ d="M16.28 9.22a.748.748 0 0 1 0 1.06l-5.25 5.25a.747.747 0 0 1-1.06 0l-2.25-2.25a.75.75 0 1 1 1.06-1.06l1.72 1.72 4.72-4.72a.749.749 0 0 1 1.06 0ZM21 4.5v15a1.5 1.5 0 0 1-1.5 1.5h-15A1.5 1.5 0 0 1 3 19.5v-15A1.5 1.5 0 0 1 4.5 3h15A1.5 1.5 0 0 1 21 4.5Zm-1.5 15v-15h-15v15h15Z"
23
+ />
24
+ </Svg>
25
+ );
26
+
27
+ /**
28
+ * EXPORTS
29
+ */
30
+ export { SvgIconCheckBoxFill };
@@ -0,0 +1,30 @@
1
+ /**
2
+ * IMPORTS
3
+ */
4
+ import * as React from "react";
5
+ import Svg, { Path } from "react-native-svg";
6
+ /**
7
+ * typings
8
+ */
9
+ import { ISvgProps } from "../interface";
10
+
11
+ const SvgIconCheckBoxOutline: React.FC<ISvgProps> = ({ color, size, ...res }) => (
12
+ <Svg
13
+ //@ts-ignore
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ width={size ? size : 24}
16
+ height={size ? size : 24}
17
+ fill="none"
18
+ {...res}
19
+ >
20
+ <Path
21
+ fill={color ? color : "#F3F3F3 "}
22
+ d="M19.5 3h-15A1.5 1.5 0 0 0 3 4.5v15A1.5 1.5 0 0 0 4.5 21h15a1.5 1.5 0 0 0 1.5-1.5v-15A1.5 1.5 0 0 0 19.5 3Zm-3.22 7.28-5.25 5.25a.747.747 0 0 1-1.06 0l-2.25-2.25a.75.75 0 1 1 1.06-1.06l1.72 1.72 4.72-4.72a.751.751 0 0 1 1.06 1.06Z"
23
+ />
24
+ </Svg>
25
+ );
26
+
27
+ /**
28
+ * EXPORTS
29
+ */
30
+ export { SvgIconCheckBoxOutline };