@factorialco/f0-react-native 0.19.1

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 (310) hide show
  1. package/README.md +54 -0
  2. package/package.json +84 -0
  3. package/src/components/Activity/ActivityItem/__snapshots__/index.spec.tsx.snap +62 -0
  4. package/src/components/Activity/ActivityItem/index.spec.tsx +103 -0
  5. package/src/components/Activity/ActivityItem/index.tsx +90 -0
  6. package/src/components/Avatars/Avatar.tsx +56 -0
  7. package/src/components/Avatars/BaseAvatar/index.tsx +126 -0
  8. package/src/components/Avatars/BaseAvatar/utils.ts +73 -0
  9. package/src/components/Avatars/CompanyAvatar/__snapshots__/index.spec.tsx.snap +25 -0
  10. package/src/components/Avatars/CompanyAvatar/index.spec.tsx +11 -0
  11. package/src/components/Avatars/CompanyAvatar/index.tsx +36 -0
  12. package/src/components/Avatars/DateAvatar/__snapshots__/index.spec.tsx.snap +18 -0
  13. package/src/components/Avatars/DateAvatar/index.spec.tsx +12 -0
  14. package/src/components/Avatars/DateAvatar/index.tsx +22 -0
  15. package/src/components/Avatars/EmojiAvatar/__snapshots__/index.spec.tsx.snap +37 -0
  16. package/src/components/Avatars/EmojiAvatar/index.spec.tsx +15 -0
  17. package/src/components/Avatars/EmojiAvatar/index.tsx +37 -0
  18. package/src/components/Avatars/FileAvatar/__snapshots__/index.spec.tsx.snap +261 -0
  19. package/src/components/Avatars/FileAvatar/index.spec.tsx +43 -0
  20. package/src/components/Avatars/FileAvatar/index.tsx +117 -0
  21. package/src/components/Avatars/FileAvatar/utils.ts +103 -0
  22. package/src/components/Avatars/IconAvatar/__snapshots__/index.spec.tsx.snap +256 -0
  23. package/src/components/Avatars/IconAvatar/index.spec.tsx +16 -0
  24. package/src/components/Avatars/IconAvatar/index.tsx +31 -0
  25. package/src/components/Avatars/ModuleAvatar/index.tsx +106 -0
  26. package/src/components/Avatars/ModuleAvatar/modules.ts +64 -0
  27. package/src/components/Avatars/PersonAvatar/__snapshots__/index.spec.tsx.snap +25 -0
  28. package/src/components/Avatars/PersonAvatar/index.spec.tsx +13 -0
  29. package/src/components/Avatars/PersonAvatar/index.tsx +38 -0
  30. package/src/components/Avatars/TeamAvatar/__snapshots__/index.spec.tsx.snap +25 -0
  31. package/src/components/Avatars/TeamAvatar/index.spec.tsx +11 -0
  32. package/src/components/Avatars/TeamAvatar/index.tsx +36 -0
  33. package/src/components/Avatars/exports.ts +9 -0
  34. package/src/components/Avatars/types.ts +15 -0
  35. package/src/components/Badge/index.tsx +47 -0
  36. package/src/components/Button/__snapshots__/index.spec.tsx.snap +517 -0
  37. package/src/components/Button/index.spec.tsx +124 -0
  38. package/src/components/Button/index.tsx +233 -0
  39. package/src/components/Counter/__snapshots__/index.spec.tsx.snap +113 -0
  40. package/src/components/Counter/index.spec.tsx +53 -0
  41. package/src/components/Counter/index.tsx +59 -0
  42. package/src/components/ExampleComponent.tsx +22 -0
  43. package/src/components/Icon/README.md +63 -0
  44. package/src/components/Icon/__tests__/Icon.spec.tsx +35 -0
  45. package/src/components/Icon/index.tsx +85 -0
  46. package/src/components/Navigation/PageHeader/__snapshots__/index.spec.tsx.snap +242 -0
  47. package/src/components/Navigation/PageHeader/index.spec.tsx +198 -0
  48. package/src/components/Navigation/PageHeader/index.tsx +53 -0
  49. package/src/components/OneChip/__snapshots__/index.spec.tsx.snap +366 -0
  50. package/src/components/OneChip/index.spec.tsx +69 -0
  51. package/src/components/OneChip/index.tsx +89 -0
  52. package/src/components/OnePreset/__snapshots__/index.spec.tsx.snap +149 -0
  53. package/src/components/OnePreset/index.spec.tsx +46 -0
  54. package/src/components/OnePreset/index.tsx +36 -0
  55. package/src/components/Tags/AlertTab/__snapshots__/index.spec.tsx.snap +292 -0
  56. package/src/components/Tags/AlertTab/index.spec.tsx +18 -0
  57. package/src/components/Tags/AlertTab/index.tsx +61 -0
  58. package/src/components/Tags/BaseTag/index.tsx +64 -0
  59. package/src/components/Tags/DotTag/__snapshots__/index.spec.tsx.snap +1081 -0
  60. package/src/components/Tags/DotTag/index.spec.tsx +14 -0
  61. package/src/components/Tags/DotTag/index.tsx +54 -0
  62. package/src/components/Tags/RawTag/__snapshots__/index.spec.tsx.snap +213 -0
  63. package/src/components/Tags/RawTag/index.spec.tsx +19 -0
  64. package/src/components/Tags/RawTag/index.tsx +41 -0
  65. package/src/components/Tags/Tag.tsx +32 -0
  66. package/src/components/Tags/exports.ts +3 -0
  67. package/src/components/__tests__/ExampleComponent.spec.tsx +16 -0
  68. package/src/components/experimental/Lists/DataList/ItemContainer.tsx +74 -0
  69. package/src/components/experimental/Lists/DataList/actions/CopyAction.tsx +72 -0
  70. package/src/components/experimental/Lists/DataList/actions/GenericAction.tsx +37 -0
  71. package/src/components/experimental/Lists/DataList/index.tsx +186 -0
  72. package/src/components/experimental/Lists/DetailsItem/__snapshots__/index.spec.tsx.snap +759 -0
  73. package/src/components/experimental/Lists/DetailsItem/index.spec.tsx +81 -0
  74. package/src/components/experimental/Lists/DetailsItem/index.tsx +68 -0
  75. package/src/components/experimental/Lists/DetailsItemsList/__snapshots__/index.spec.tsx.snap +671 -0
  76. package/src/components/experimental/Lists/DetailsItemsList/index.spec.tsx +73 -0
  77. package/src/components/experimental/Lists/DetailsItemsList/index.tsx +52 -0
  78. package/src/icons/app/AcademicCap.tsx +31 -0
  79. package/src/icons/app/Add.tsx +21 -0
  80. package/src/icons/app/Ai.tsx +24 -0
  81. package/src/icons/app/Alert.tsx +16 -0
  82. package/src/icons/app/AlertCircle.tsx +19 -0
  83. package/src/icons/app/AlertCircleLine.tsx +17 -0
  84. package/src/icons/app/AlignTextCenter.tsx +21 -0
  85. package/src/icons/app/AlignTextJustify.tsx +21 -0
  86. package/src/icons/app/AlignTextLeft.tsx +21 -0
  87. package/src/icons/app/AlignTextRight.tsx +21 -0
  88. package/src/icons/app/Appearance.tsx +33 -0
  89. package/src/icons/app/Archive.tsx +21 -0
  90. package/src/icons/app/ArchiveOpen.tsx +21 -0
  91. package/src/icons/app/ArrowCycle.tsx +27 -0
  92. package/src/icons/app/ArrowDown.tsx +27 -0
  93. package/src/icons/app/ArrowLeft.tsx +21 -0
  94. package/src/icons/app/ArrowRight.tsx +21 -0
  95. package/src/icons/app/ArrowUp.tsx +21 -0
  96. package/src/icons/app/Bank.tsx +20 -0
  97. package/src/icons/app/BarGraph.tsx +21 -0
  98. package/src/icons/app/Bell.tsx +24 -0
  99. package/src/icons/app/Bold.tsx +23 -0
  100. package/src/icons/app/BookOpen.tsx +21 -0
  101. package/src/icons/app/Briefcase.tsx +18 -0
  102. package/src/icons/app/Bucket.tsx +23 -0
  103. package/src/icons/app/Building.tsx +25 -0
  104. package/src/icons/app/Bullet.tsx +19 -0
  105. package/src/icons/app/Calculator.tsx +17 -0
  106. package/src/icons/app/Calendar.tsx +21 -0
  107. package/src/icons/app/CalendarArrowDown.tsx +21 -0
  108. package/src/icons/app/CalendarArrowLeft.tsx +21 -0
  109. package/src/icons/app/CalendarArrowRight.tsx +21 -0
  110. package/src/icons/app/CameraPlus.tsx +22 -0
  111. package/src/icons/app/ChartLine.tsx +26 -0
  112. package/src/icons/app/ChartPie.tsx +25 -0
  113. package/src/icons/app/Check.tsx +21 -0
  114. package/src/icons/app/CheckCircle.tsx +21 -0
  115. package/src/icons/app/CheckCircleLine.tsx +22 -0
  116. package/src/icons/app/CheckDouble.tsx +21 -0
  117. package/src/icons/app/ChevronDown.tsx +21 -0
  118. package/src/icons/app/ChevronLeft.tsx +21 -0
  119. package/src/icons/app/ChevronRight.tsx +21 -0
  120. package/src/icons/app/ChevronUp.tsx +21 -0
  121. package/src/icons/app/Circle.tsx +16 -0
  122. package/src/icons/app/Clock.tsx +22 -0
  123. package/src/icons/app/Code.tsx +21 -0
  124. package/src/icons/app/Coffee.tsx +24 -0
  125. package/src/icons/app/Comment.tsx +19 -0
  126. package/src/icons/app/Completed.tsx +21 -0
  127. package/src/icons/app/CreditCard.tsx +21 -0
  128. package/src/icons/app/Cross.tsx +21 -0
  129. package/src/icons/app/CrossedCircle.tsx +21 -0
  130. package/src/icons/app/Crown.tsx +21 -0
  131. package/src/icons/app/Delete.tsx +21 -0
  132. package/src/icons/app/Deny.tsx +21 -0
  133. package/src/icons/app/Desktop.tsx +26 -0
  134. package/src/icons/app/DollarBill.tsx +22 -0
  135. package/src/icons/app/DottedCircle.tsx +16 -0
  136. package/src/icons/app/Download.tsx +21 -0
  137. package/src/icons/app/DropdownDefault.tsx +25 -0
  138. package/src/icons/app/DropdownOpen.tsx +25 -0
  139. package/src/icons/app/Ellipsis.tsx +36 -0
  140. package/src/icons/app/EllipsisHorizontal.tsx +18 -0
  141. package/src/icons/app/Envelope.tsx +21 -0
  142. package/src/icons/app/EnvelopeOpen.tsx +23 -0
  143. package/src/icons/app/Exit.tsx +21 -0
  144. package/src/icons/app/ExternalLink.tsx +21 -0
  145. package/src/icons/app/EyeInvisible.tsx +26 -0
  146. package/src/icons/app/EyeVisible.tsx +21 -0
  147. package/src/icons/app/FaceNegative.tsx +21 -0
  148. package/src/icons/app/FaceNeutral.tsx +21 -0
  149. package/src/icons/app/FacePositive.tsx +21 -0
  150. package/src/icons/app/FaceSuperNegative.tsx +21 -0
  151. package/src/icons/app/FaceSuperPositive.tsx +21 -0
  152. package/src/icons/app/Feed.tsx +21 -0
  153. package/src/icons/app/File.tsx +21 -0
  154. package/src/icons/app/FileFilled.tsx +21 -0
  155. package/src/icons/app/Filter.tsx +19 -0
  156. package/src/icons/app/Flag.tsx +21 -0
  157. package/src/icons/app/Folder.tsx +19 -0
  158. package/src/icons/app/Folders.tsx +24 -0
  159. package/src/icons/app/Globe.tsx +26 -0
  160. package/src/icons/app/Graph.tsx +26 -0
  161. package/src/icons/app/Handshake.tsx +29 -0
  162. package/src/icons/app/Heading1.tsx +21 -0
  163. package/src/icons/app/Heading2.tsx +21 -0
  164. package/src/icons/app/Heading3.tsx +21 -0
  165. package/src/icons/app/Heart.tsx +21 -0
  166. package/src/icons/app/HoldHeart.tsx +21 -0
  167. package/src/icons/app/Home.tsx +20 -0
  168. package/src/icons/app/Hub.tsx +51 -0
  169. package/src/icons/app/Image.tsx +21 -0
  170. package/src/icons/app/InProgressTask.tsx +17 -0
  171. package/src/icons/app/Inbox.tsx +26 -0
  172. package/src/icons/app/Info.tsx +21 -0
  173. package/src/icons/app/InfoCircle.tsx +21 -0
  174. package/src/icons/app/InfoCircleLine.tsx +28 -0
  175. package/src/icons/app/Italic.tsx +21 -0
  176. package/src/icons/app/Kanban.tsx +21 -0
  177. package/src/icons/app/Laptop.tsx +20 -0
  178. package/src/icons/app/LayersFront.tsx +26 -0
  179. package/src/icons/app/Lightbulb.tsx +26 -0
  180. package/src/icons/app/Link.tsx +25 -0
  181. package/src/icons/app/LinkRemove.tsx +20 -0
  182. package/src/icons/app/List.tsx +25 -0
  183. package/src/icons/app/LockLocked.tsx +21 -0
  184. package/src/icons/app/LockUnlocked.tsx +21 -0
  185. package/src/icons/app/LogoAvatar.tsx +23 -0
  186. package/src/icons/app/LogoEruditai.tsx +19 -0
  187. package/src/icons/app/LogoTravelperk.tsx +27 -0
  188. package/src/icons/app/Masonry.tsx +19 -0
  189. package/src/icons/app/Maximize.tsx +21 -0
  190. package/src/icons/app/Megaphone.tsx +21 -0
  191. package/src/icons/app/Menu.tsx +21 -0
  192. package/src/icons/app/MessageFrown.tsx +25 -0
  193. package/src/icons/app/MessageHeart.tsx +25 -0
  194. package/src/icons/app/Messages.tsx +21 -0
  195. package/src/icons/app/Microphone.tsx +26 -0
  196. package/src/icons/app/MicrophoneNegative.tsx +26 -0
  197. package/src/icons/app/Minimize.tsx +21 -0
  198. package/src/icons/app/Minus.tsx +21 -0
  199. package/src/icons/app/Mobile.tsx +21 -0
  200. package/src/icons/app/Money.tsx +26 -0
  201. package/src/icons/app/MoneyBag.tsx +24 -0
  202. package/src/icons/app/MoveDown.tsx +44 -0
  203. package/src/icons/app/MoveTop.tsx +34 -0
  204. package/src/icons/app/MoveUp.tsx +42 -0
  205. package/src/icons/app/Office.tsx +31 -0
  206. package/src/icons/app/OlList.tsx +21 -0
  207. package/src/icons/app/PalmTree.tsx +20 -0
  208. package/src/icons/app/Paperclip.tsx +20 -0
  209. package/src/icons/app/PartiallyCompleted.tsx +21 -0
  210. package/src/icons/app/PauseCircle.tsx +21 -0
  211. package/src/icons/app/Pencil.tsx +21 -0
  212. package/src/icons/app/People.tsx +27 -0
  213. package/src/icons/app/Person.tsx +22 -0
  214. package/src/icons/app/Phone.tsx +20 -0
  215. package/src/icons/app/Pin.tsx +22 -0
  216. package/src/icons/app/PixBrazil.tsx +19 -0
  217. package/src/icons/app/Placeholder.tsx +21 -0
  218. package/src/icons/app/Plane.tsx +21 -0
  219. package/src/icons/app/Plus.tsx +21 -0
  220. package/src/icons/app/Present.tsx +31 -0
  221. package/src/icons/app/Printer.tsx +26 -0
  222. package/src/icons/app/Proyector.tsx +22 -0
  223. package/src/icons/app/Question.tsx +22 -0
  224. package/src/icons/app/Quote.tsx +21 -0
  225. package/src/icons/app/Reaction.tsx +32 -0
  226. package/src/icons/app/Receipt.tsx +20 -0
  227. package/src/icons/app/Record.tsx +17 -0
  228. package/src/icons/app/RemoveFavorite.tsx +21 -0
  229. package/src/icons/app/Replace.tsx +21 -0
  230. package/src/icons/app/Reset.tsx +27 -0
  231. package/src/icons/app/Rocket.tsx +26 -0
  232. package/src/icons/app/Salad.tsx +21 -0
  233. package/src/icons/app/Save.tsx +27 -0
  234. package/src/icons/app/Schedule.tsx +32 -0
  235. package/src/icons/app/Search.tsx +17 -0
  236. package/src/icons/app/SearchPerson.tsx +24 -0
  237. package/src/icons/app/Settings.tsx +20 -0
  238. package/src/icons/app/Share.tsx +27 -0
  239. package/src/icons/app/Sliders.tsx +22 -0
  240. package/src/icons/app/SolidPause.tsx +19 -0
  241. package/src/icons/app/SolidPlay.tsx +19 -0
  242. package/src/icons/app/SolidStop.tsx +19 -0
  243. package/src/icons/app/Sort.tsx +21 -0
  244. package/src/icons/app/Sparkles.tsx +25 -0
  245. package/src/icons/app/Spinner.tsx +20 -0
  246. package/src/icons/app/Split.tsx +21 -0
  247. package/src/icons/app/Star.tsx +21 -0
  248. package/src/icons/app/StarFilled.tsx +19 -0
  249. package/src/icons/app/Strikethrough.tsx +21 -0
  250. package/src/icons/app/Suitcase.tsx +22 -0
  251. package/src/icons/app/Table.tsx +21 -0
  252. package/src/icons/app/Target.tsx +31 -0
  253. package/src/icons/app/TextSize.tsx +21 -0
  254. package/src/icons/app/Timer.tsx +27 -0
  255. package/src/icons/app/Underline.tsx +26 -0
  256. package/src/icons/app/Upload.tsx +21 -0
  257. package/src/icons/app/Video.tsx +23 -0
  258. package/src/icons/app/VideoRecorder.tsx +31 -0
  259. package/src/icons/app/VideoRecorderNegative.tsx +22 -0
  260. package/src/icons/app/Wallet.tsx +26 -0
  261. package/src/icons/app/Warning.tsx +21 -0
  262. package/src/icons/app/WhatsappChat.tsx +23 -0
  263. package/src/icons/app/Windows.tsx +21 -0
  264. package/src/icons/app/index.ts +186 -0
  265. package/src/icons/index.ts +5 -0
  266. package/src/icons/modules/Benefits.tsx +25 -0
  267. package/src/icons/modules/Calendar.tsx +21 -0
  268. package/src/icons/modules/Cards.tsx +25 -0
  269. package/src/icons/modules/ClockIn.tsx +21 -0
  270. package/src/icons/modules/Discover.tsx +25 -0
  271. package/src/icons/modules/Documents.tsx +19 -0
  272. package/src/icons/modules/Engagement.tsx +21 -0
  273. package/src/icons/modules/Finance.tsx +21 -0
  274. package/src/icons/modules/Goals.tsx +19 -0
  275. package/src/icons/modules/Home.tsx +19 -0
  276. package/src/icons/modules/Hub.tsx +20 -0
  277. package/src/icons/modules/Inbox.tsx +19 -0
  278. package/src/icons/modules/Kudos.tsx +19 -0
  279. package/src/icons/modules/MyDocuments.tsx +21 -0
  280. package/src/icons/modules/Organization.tsx +19 -0
  281. package/src/icons/modules/Overviews.tsx +23 -0
  282. package/src/icons/modules/Payroll.tsx +25 -0
  283. package/src/icons/modules/Performance.tsx +19 -0
  284. package/src/icons/modules/Profile.tsx +19 -0
  285. package/src/icons/modules/Projects.tsx +21 -0
  286. package/src/icons/modules/Recruitment.tsx +21 -0
  287. package/src/icons/modules/Reports.tsx +21 -0
  288. package/src/icons/modules/Sales.tsx +27 -0
  289. package/src/icons/modules/Settings.tsx +21 -0
  290. package/src/icons/modules/Shifts.tsx +27 -0
  291. package/src/icons/modules/Social.tsx +21 -0
  292. package/src/icons/modules/Software.tsx +19 -0
  293. package/src/icons/modules/Spaces.tsx +21 -0
  294. package/src/icons/modules/Spending.tsx +21 -0
  295. package/src/icons/modules/Tasks.tsx +21 -0
  296. package/src/icons/modules/TimeOff.tsx +21 -0
  297. package/src/icons/modules/TimeTracking.tsx +25 -0
  298. package/src/icons/modules/Trainings.tsx +19 -0
  299. package/src/icons/modules/Treasury.tsx +19 -0
  300. package/src/icons/modules/Workflows.tsx +19 -0
  301. package/src/icons/modules/index.ts +35 -0
  302. package/src/icons/types.ts +9 -0
  303. package/src/index.ts +18 -0
  304. package/src/lib/date.ts +102 -0
  305. package/src/lib/emojis.tsx +47 -0
  306. package/src/lib/iconWithClassName.ts +17 -0
  307. package/src/lib/text.ts +31 -0
  308. package/src/lib/utils.ts +6 -0
  309. package/src/ui/avatar.tsx +113 -0
  310. package/tailwind.config.ts +19 -0
@@ -0,0 +1,21 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPartiallyCompleted = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ fill="currentColor"
14
+ fillRule="evenodd"
15
+ d="M4.65 12a7.35 7.35 0 1 1 14.7 0 7.35 7.35 0 0 1-14.7 0M12 3.35a8.65 8.65 0 1 0 0 17.3 8.65 8.65 0 0 0 0-17.3M18 12a6 6 0 0 1-6 6c-4.8 0-6-4-6-6h6V6a6 6 0 0 1 6 6"
16
+ clipRule="evenodd"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgPartiallyCompleted);
21
+ export default ForwardRef;
@@ -0,0 +1,21 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPauseCircle = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ fill="currentColor"
14
+ fillRule="evenodd"
15
+ d="M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16M10 8.35a.65.65 0 0 1 .65.65v6a.65.65 0 1 1-1.3 0V9a.65.65 0 0 1 .65-.65m4.65.65a.65.65 0 1 0-1.3 0v6a.65.65 0 1 0 1.3 0z"
16
+ clipRule="evenodd"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgPauseCircle);
21
+ export default ForwardRef;
@@ -0,0 +1,21 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPencil = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="m7 13-1.5 5.5L11 17m-4-4 7.5-7.5a2.83 2.83 0 0 1 4 0v0a2.83 2.83 0 0 1 0 4L11 17m-4-4 4 4"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgPencil);
21
+ export default ForwardRef;
@@ -0,0 +1,27 @@
1
+ import Svg, { Circle, Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPeople = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Circle cx={9} cy={9} r={4} stroke="currentColor" />
13
+ <Path
14
+ stroke="currentColor"
15
+ strokeLinecap="round"
16
+ d="M16 13a3 3 0 1 0 0-6"
17
+ />
18
+ <Path
19
+ stroke="currentColor"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ d="M4 18s1.5-2 5-2 5 2 5 2M17 16c2 0 2.75 1 2.75 1"
23
+ />
24
+ </Svg>
25
+ );
26
+ const ForwardRef = forwardRef(SvgPeople);
27
+ export default ForwardRef;
@@ -0,0 +1,22 @@
1
+ import Svg, { Circle, Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPerson = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Circle cx={12} cy={9} r={4} stroke="currentColor" />
13
+ <Path
14
+ stroke="currentColor"
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ d="M7 18s1.5-2 5-2 5 2 5 2"
18
+ />
19
+ </Svg>
20
+ );
21
+ const ForwardRef = forwardRef(SvgPerson);
22
+ export default ForwardRef;
@@ -0,0 +1,20 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPhone = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinejoin="round"
15
+ d="m10.728 5.684.974 2.921a1 1 0 0 1-.577 1.245L9.5 10.5c1 2 2 3 4 4l.65-1.624a1 1 0 0 1 1.245-.578l2.921.974a1 1 0 0 1 .684.949v2.28c0 1.656-1.35 2.977-2.978 2.663-2.54-.49-6.148-1.696-8.522-4.664-2.189-2.736-2.88-5.322-3.058-7.104C4.302 5.997 5.501 5 6.907 5H9.78a1 1 0 0 1 .948.684Z"
16
+ />
17
+ </Svg>
18
+ );
19
+ const ForwardRef = forwardRef(SvgPhone);
20
+ export default ForwardRef;
@@ -0,0 +1,22 @@
1
+ import Svg, { Path, Rect } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPin = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="M12 20c3-3.2 6-6.065 6-9.6S15.314 4 12 4s-6 2.865-6 6.4 3 6.4 6 9.6"
17
+ />
18
+ <Rect width={4} height={4} x={10} y={8} stroke="currentColor" rx={2} />
19
+ </Svg>
20
+ );
21
+ const ForwardRef = forwardRef(SvgPin);
22
+ export default ForwardRef;
@@ -0,0 +1,19 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPixBrazil = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ fill="currentColor"
14
+ d="m6.11 8.841-1.422 1.424a2.43 2.43 0 0 0 0 3.441l1.424 1.424 1.392-.007c.315 0 .617-.125.885-.37l2.397-2.395c.175-.176.388-.301.616-.373a1.9 1.9 0 0 1-.596-.352l-.01-.009-2.408-2.407c-.268-.246-.57-.371-.884-.371zM7.484 16.505c.67-.147 1.677-.388 1.967-.678l2.404-2.404c.002-.002.012-.01.032-.01.019 0 .029.008.03.01l2.414 2.413c.323.323 1.23.742 1.876.951l-2.498 2.498a2.48 2.48 0 0 1-3.441 0zM17.646 15.348l-1.367-.216c-.326 0-.647-.132-.88-.365l-2.412-2.413a1.5 1.5 0 0 0-.614-.37 1.9 1.9 0 0 0 .594-.351l.01-.009L15.4 9.203c.232-.23.554-.364.88-.364l1.587.005 1.422 1.421c.95.95.95 2.492 0 3.441zM16.207 7.182l-2.498-2.497a2.436 2.436 0 0 0-3.444 0L7.39 7.562c.699.109 1.773.277 2.066.587l2.4 2.4.002.003.012.01h.005c.003 0 .024-.002.056-.026l2.4-2.4c.324-.324 1.23-.745 1.876-.954"
15
+ />
16
+ </Svg>
17
+ );
18
+ const ForwardRef = forwardRef(SvgPixBrazil);
19
+ export default ForwardRef;
@@ -0,0 +1,21 @@
1
+ import Svg, { Circle, Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPlaceholder = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Circle cx={12} cy={12} r={8} stroke="currentColor" />
13
+ <Path
14
+ stroke="currentColor"
15
+ strokeLinejoin="round"
16
+ d="m17.5 6.5-11 11M17.5 17.5l-11-11"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgPlaceholder);
21
+ export default ForwardRef;
@@ -0,0 +1,21 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPlane = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="m4.92 16.48 1.428.357c.237.06.356.089.452.15a.7.7 0 0 1 .212.213c.062.096.092.215.151.452l.357 1.429c.157.628.236.942.412 1.089a.7.7 0 0 0 .553.153c.227-.035.456-.264.914-.722l.273-.273c.121-.121.182-.182.225-.252a.7.7 0 0 0 .084-.203c.019-.08.019-.166.019-.337v-1.072c0-.171 0-.257.02-.337a.7.7 0 0 1 .083-.203c.043-.07.104-.131.225-.252l1.471-1.471c.401-.401.601-.601.811-.642a.7.7 0 0 1 .528.108c.177.12.282.383.493.91l.738 1.846c.21.527.316.79.493.91a.7.7 0 0 0 .528.108c.21-.04.41-.241.811-.642l.391-.391c.15-.15.224-.224.273-.312a.7.7 0 0 0 .08-.252c.012-.1-.005-.204-.04-.413l-.81-4.863c-.035-.208-.052-.312-.04-.412a.7.7 0 0 1 .08-.252c.049-.088.123-.162.273-.312L18.5 8.5a2.121 2.121 0 0 0-3-3l-2.092 2.092c-.15.15-.224.224-.312.273a.7.7 0 0 1-.252.08c-.1.012-.204-.005-.412-.04l-4.863-.81c-.209-.035-.313-.052-.413-.04a.7.7 0 0 0-.251.08c-.089.049-.163.123-.313.273l-.391.391C5.8 8.2 5.6 8.4 5.559 8.61a.7.7 0 0 0 .108.528c.12.177.383.282.91.493l1.846.738c.527.21.79.316.91.493a.7.7 0 0 1 .108.528c-.04.21-.241.41-.642.811h0l-1.471 1.471c-.121.121-.182.182-.252.225a.7.7 0 0 1-.203.084c-.08.019-.166.019-.337.019H5.464c-.171 0-.257 0-.337.02a.7.7 0 0 0-.203.083c-.07.043-.131.104-.252.225l-.273.273c-.458.458-.687.687-.722.914a.7.7 0 0 0 .153.553c.147.176.46.255 1.09.412"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgPlane);
21
+ export default ForwardRef;
@@ -0,0 +1,21 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPlus = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ fill="currentColor"
14
+ fillRule="evenodd"
15
+ d="M12.65 5a.65.65 0 1 0-1.3 0v6.35H5a.65.65 0 1 0 0 1.3h6.35V19a.65.65 0 1 0 1.3 0v-6.35H19a.65.65 0 1 0 0-1.3h-6.35z"
16
+ clipRule="evenodd"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgPlus);
21
+ export default ForwardRef;
@@ -0,0 +1,31 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPresent = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="M12 8v11M7 5.5A2.5 2.5 0 0 1 9.5 3v0A2.5 2.5 0 0 1 12 5.5V8H9.5A2.5 2.5 0 0 1 7 5.5M17 5.5A2.5 2.5 0 0 0 14.5 3v0A2.5 2.5 0 0 0 12 5.5V8h2.5A2.5 2.5 0 0 0 17 5.5"
17
+ />
18
+ <Path
19
+ fill="currentColor"
20
+ d="M5 12v-.65a.65.65 0 0 0-.65.65zm14 0h.65a.65.65 0 0 0-.65-.65zm-14 .65h14v-1.3H5zM18.35 12v4h1.3v-4zM16 18.35H8v1.3h8zM5.65 16v-4h-1.3v4zM8 18.35A2.35 2.35 0 0 1 5.65 16h-1.3A3.65 3.65 0 0 0 8 19.65zM18.35 16A2.35 2.35 0 0 1 16 18.35v1.3A3.65 3.65 0 0 0 19.65 16z"
21
+ />
22
+ <Path
23
+ stroke="currentColor"
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ d="M4 10.667c0-.62 0-.93.068-1.185a2 2 0 0 1 1.414-1.414C5.737 8 6.047 8 6.667 8h10.666c.62 0 .93 0 1.185.068a2 2 0 0 1 1.414 1.414c.068.255.068.565.068 1.185v0c0 .31 0 .465-.034.592a1 1 0 0 1-.707.707c-.127.034-.282.034-.592.034H5.333c-.31 0-.465 0-.592-.034a1 1 0 0 1-.707-.707C4 11.132 4 10.977 4 10.667"
27
+ />
28
+ </Svg>
29
+ );
30
+ const ForwardRef = forwardRef(SvgPresent);
31
+ export default ForwardRef;
@@ -0,0 +1,26 @@
1
+ import Svg, { Path, Circle } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgPrinter = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinejoin="round"
15
+ d="M4 13v-1.2c0-1.68 0-2.52.327-3.162a3 3 0 0 1 1.311-1.311C6.28 7 7.12 7 8.8 7h6.4c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311C20 9.28 20 10.12 20 11.8V13c0 .93 0 1.395-.102 1.777a3 3 0 0 1-2.122 2.12C17.396 17 16.93 17 16 17v-1.4c0-.56 0-.84-.109-1.054a1 1 0 0 0-.437-.437C15.24 14 14.96 14 14.4 14H9.6c-.56 0-.84 0-1.054.109a1 1 0 0 0-.437.437C8 14.76 8 15.04 8 15.6V17c-.93 0-1.395 0-1.776-.102a3 3 0 0 1-2.122-2.121C4 14.395 4 13.93 4 13ZM17 7a3 3 0 0 0-3-3h-4a3 3 0 0 0-3 3"
16
+ />
17
+ <Path
18
+ stroke="currentColor"
19
+ strokeLinejoin="round"
20
+ d="M16 16.8v-1.2c0-.56 0-.84-.109-1.054a1 1 0 0 0-.437-.437C15.24 14 14.96 14 14.4 14H9.6c-.56 0-.84 0-1.054.109a1 1 0 0 0-.437.437C8 14.76 8 15.04 8 15.6v1.2c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C9.52 20 10.08 20 11.2 20h1.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C16 18.48 16 17.92 16 16.8Z"
21
+ />
22
+ <Circle cx={17} cy={11} r={1} fill="currentColor" />
23
+ </Svg>
24
+ );
25
+ const ForwardRef = forwardRef(SvgPrinter);
26
+ export default ForwardRef;
@@ -0,0 +1,22 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgProyector = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path stroke="currentColor" d="M5 5h14v7a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3z" />
13
+ <Path
14
+ stroke="currentColor"
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ d="M12 15v5M12 15l-5 5M12 15l5 5M4 5h16M9 11.5l2-2 2 2L15.5 9M12 5V3.5"
18
+ />
19
+ </Svg>
20
+ );
21
+ const ForwardRef = forwardRef(SvgProyector);
22
+ export default ForwardRef;
@@ -0,0 +1,22 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgQuestion = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="M9 9c0-2 1.5-3 3-3s3 1.5 3 3c0 3-3 2.5-3 5"
17
+ />
18
+ <Path stroke="currentColor" strokeLinecap="round" d="M12 17v.1" />
19
+ </Svg>
20
+ );
21
+ const ForwardRef = forwardRef(SvgQuestion);
22
+ export default ForwardRef;
@@ -0,0 +1,21 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgQuote = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="M10 6a5 5 0 0 0-5 5v2m0 0v2.5A2.5 2.5 0 0 0 7.5 18v0a2.5 2.5 0 0 0 2.5-2.5v0A2.5 2.5 0 0 0 7.5 13zM19 6a5 5 0 0 0-5 5v2m0 0v2.5a2.5 2.5 0 0 0 2.5 2.5v0a2.5 2.5 0 0 0 2.5-2.5v0a2.5 2.5 0 0 0-2.5-2.5z"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgQuote);
21
+ export default ForwardRef;
@@ -0,0 +1,32 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgReaction = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="M19 12a7 7 0 1 1-7-7"
17
+ />
18
+ <Path
19
+ stroke="currentColor"
20
+ strokeLinecap="round"
21
+ d="M10 10v1M14 10v1M9.5 14v0a4 4 0 0 0 5 0v0"
22
+ />
23
+ <Path
24
+ stroke="currentColor"
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ d="M18 3v3m0 3V6m0 0h-3 6"
28
+ />
29
+ </Svg>
30
+ );
31
+ const ForwardRef = forwardRef(SvgReaction);
32
+ export default ForwardRef;
@@ -0,0 +1,20 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgReceipt = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ d="M18 7v11.826a1 1 0 0 1-1.65.759l-1.184-1.014a1 1 0 0 0-1.319.015l-1.187 1.067a1 1 0 0 1-1.34-.003l-1.167-1.058a1 1 0 0 0-1.322-.018l-1.18 1.011A1 1 0 0 1 6 18.825V7a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3ZM9 8h6M9 12h4"
16
+ />
17
+ </Svg>
18
+ );
19
+ const ForwardRef = forwardRef(SvgReceipt);
20
+ export default ForwardRef;
@@ -0,0 +1,17 @@
1
+ import Svg, { Circle } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgRecord = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Circle cx={12} cy={12} r={8} stroke="currentColor" />
13
+ <Circle cx={12} cy={12} r={6} fill="currentColor" />
14
+ </Svg>
15
+ );
16
+ const ForwardRef = forwardRef(SvgRecord);
17
+ export default ForwardRef;
@@ -0,0 +1,21 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgRemoveFavorite = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ fill="currentColor"
14
+ fillRule="evenodd"
15
+ d="M12.456 4.108a1.02 1.02 0 0 0-.917 0c-.24.12-.373.329-.445.45a6 6 0 0 0-.233.466l-.01.023-.863 1.832a.65.65 0 0 0 1.176.554l.834-1.771 1.675 3.56.011.024c.039.083.105.225.21.343q.135.154.322.246c.146.071.305.095.392.107l.024.004 3.81.584-.018.019-2.206 2.253a.65.65 0 0 0 .93.91l2.205-2.254.017-.017c.13-.133.257-.263.351-.378s.233-.305.266-.564a1.07 1.07 0 0 0-.266-.852 1.1 1.1 0 0 0-.555-.307 6 6 0 0 0-.5-.09l-.024-.005-3.795-.581-1.702-3.617-.01-.023a6 6 0 0 0-.234-.465c-.072-.123-.204-.33-.445-.45m-5.585 6.22a.65.65 0 0 0-.197-1.285l-1.32.202-.025.004a6 6 0 0 0-.5.09 1.1 1.1 0 0 0-.555.308c-.21.234-.304.547-.266.852.033.259.173.45.266.564.094.115.221.244.351.378l.018.017L7.4 14.276l.004.005-.002.014-.65 3.98-.005.024c-.03.19-.06.37-.072.52a1.13 1.13 0 0 0 .102.614c.144.277.406.484.725.546.27.053.504-.037.634-.094.135-.058.293-.146.454-.234l.022-.012 3.385-1.867 3.385 1.867a.65.65 0 1 0 .627-1.139l-3.408-1.88-.022-.012c-.077-.043-.217-.122-.376-.155a1 1 0 0 0-.412 0c-.16.033-.3.112-.377.155l-.022.012-3.356 1.851.649-3.966.004-.026c.016-.091.042-.244.024-.399a1.1 1.1 0 0 0-.118-.38 1.4 1.4 0 0 0-.248-.315l-.018-.018-2.758-2.818-.02-.02zM6.46 5.54a.65.65 0 0 0-.92.92l12 12a.65.65 0 1 0 .92-.92z"
16
+ clipRule="evenodd"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgRemoveFavorite);
21
+ export default ForwardRef;
@@ -0,0 +1,21 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgReplace = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="M20 10V9a3 3 0 0 0-3-3h-3m0 0 2-2m-2 2 2 2M4 14v1a3 3 0 0 0 3 3h3m0 0-2 2m2-2-2-2M16 14h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2M6 4h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgReplace);
21
+ export default ForwardRef;
@@ -0,0 +1,27 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgReset = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="M5 13.5a7 7 0 1 0 7-7H5.5"
17
+ />
18
+ <Path
19
+ stroke="currentColor"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ d="m8 3.5-3 3 3 3"
23
+ />
24
+ </Svg>
25
+ );
26
+ const ForwardRef = forwardRef(SvgReset);
27
+ export default ForwardRef;
@@ -0,0 +1,26 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgRocket = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="m11 15-2-2m2 2c1.075-.409 2.413-.924 3.385-1.539M11 15v4s3.254-.885 4-2c.83-1.246-.615-3.539-.615-3.539M9 13c.41-1.062.925-2.388 1.539-3.346M9 13H5s.885-3.254 2-4c1.246-.83 3.539.654 3.539.654m0 0C12.5 6.5 14.5 5 19 5c0 3.5-1 6.5-4.615 8.461"
17
+ />
18
+ <Path
19
+ stroke="currentColor"
20
+ strokeLinejoin="round"
21
+ d="M4.67 17.526a1.668 1.668 0 0 1 3.33.142c0 .867-.663 1.589-1.526 1.663L4.5 19.5z"
22
+ />
23
+ </Svg>
24
+ );
25
+ const ForwardRef = forwardRef(SvgRocket);
26
+ export default ForwardRef;
@@ -0,0 +1,21 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgSalad = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 20 20"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ fill="currentColor"
14
+ fillRule="evenodd"
15
+ d="M8.14 2.46a.65.65 0 0 1 .556-.08c.583.184 1.343.513 2.042.912.494.282 1.004.626 1.4 1.01 1.055-.56 2.11-.848 2.768-.945a.65.65 0 0 1 .688.379c.346.777.811 2.018 1.09 3.231.139.606.236 1.229.241 1.795a4 4 0 0 1-.033.588H17a.65.65 0 0 1 .65.65 7.64 7.64 0 0 1-3.392 6.357V18a.65.65 0 0 1-.65.65H6.393a.65.65 0 0 1-.65-.65v-1.643A7.64 7.64 0 0 1 2.35 10 .65.65 0 0 1 3 9.35h.124a7 7 0 0 1-.086-.957c-.022-.801.065-1.757.345-2.599A.65.65 0 0 1 4 5.35c.402 0 .97.04 1.594.149.147-.32.355-.697.618-1.085.45-.661 1.089-1.396 1.928-1.955M6.886 5.815c.605.197 1.22.478 1.734.877a3.1 3.1 0 0 1 1.068-.322A6.3 6.3 0 0 1 11 5.029a7 7 0 0 0-.907-.608 10.4 10.4 0 0 0-1.488-.698c-.543.416-.984.93-1.317 1.421a7 7 0 0 0-.402.672m4.326.755q.395.158.729.41c.726.545 1.21 1.4 1.256 2.369h2.376c.033-.146.054-.337.052-.577-.004-.437-.08-.959-.208-1.515a17.4 17.4 0 0 0-.81-2.518 8.2 8.2 0 0 0-2.266.943c-.407.25-.793.545-1.13.888m5.105 4.079H3.683a6.35 6.35 0 0 0 3.045 4.793.65.65 0 0 1 .315.557v1.35h5.915V16c0-.228.119-.44.314-.557a6.35 6.35 0 0 0 3.045-4.793M4.448 9.35h2.456c.031-.679.279-1.302.673-1.802-.478-.302-1.087-.523-1.724-.67A9 9 0 0 0 4.49 6.67a7 7 0 0 0-.152 1.687 5.6 5.6 0 0 0 .111.993m3.758 0h3.688a1.847 1.847 0 0 0-1.844-1.7 1.847 1.847 0 0 0-1.844 1.7"
16
+ clipRule="evenodd"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgSalad);
21
+ export default ForwardRef;
@@ -0,0 +1,27 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgSave = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="M16 19a3 3 0 0 0 3-3v-5.757a3 3 0 0 0-.879-2.122L15.88 5.88A3 3 0 0 0 13.757 5H8v0a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3v0m8 0v-3a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v3m8 0H8"
17
+ />
18
+ <Path
19
+ stroke="currentColor"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ d="M15 6v4H9V6"
23
+ />
24
+ </Svg>
25
+ );
26
+ const ForwardRef = forwardRef(SvgSave);
27
+ export default ForwardRef;
@@ -0,0 +1,32 @@
1
+ import Svg, { Path, Circle } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgSchedule = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path
13
+ stroke="currentColor"
14
+ strokeLinecap="round"
15
+ d="M10.5 18H7a3 3 0 0 1-3-3V9a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v0"
16
+ />
17
+ <Circle cx={17.5} cy={15.5} r={4.5} stroke="currentColor" />
18
+ <Path
19
+ stroke="currentColor"
20
+ strokeLinecap="round"
21
+ d="M17.5 14v1.054c0 .279.14.539.371.693L19 16.5"
22
+ />
23
+ <Path
24
+ stroke="currentColor"
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ d="M7 10h4M7 14h2"
28
+ />
29
+ </Svg>
30
+ );
31
+ const ForwardRef = forwardRef(SvgSchedule);
32
+ export default ForwardRef;
@@ -0,0 +1,17 @@
1
+ import Svg, { Path, Rect } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgSearch = (props: SvgProps, ref: Ref<Svg>) => (
5
+ <Svg
6
+ fill="none"
7
+ viewBox="0 0 24 24"
8
+ className={props.className}
9
+ ref={ref}
10
+ {...props}
11
+ >
12
+ <Path stroke="currentColor" strokeLinecap="round" d="m16 16 3 3" />
13
+ <Rect width={14} height={14} x={4} y={4} stroke="currentColor" rx={7} />
14
+ </Svg>
15
+ );
16
+ const ForwardRef = forwardRef(SvgSearch);
17
+ export default ForwardRef;