@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 SvgLockUnlocked = (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 10H8a3 3 0 0 0-3 3v3a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-3a3 3 0 0 0-3-3M12 14v1M8 10V8a4 4 0 0 1 4-4v0"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgLockUnlocked);
21
+ export default ForwardRef;
@@ -0,0 +1,23 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgLogoAvatar = (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.919 16.284a6.646 6.646 0 1 1 10.162 0q.505.315.964.689l.134.108a8 8 0 1 0-12.358 0l.134-.108q.46-.374.964-.689"
15
+ />
16
+ <Path
17
+ fill="currentColor"
18
+ d="M17.037 18.215A7.97 7.97 0 0 1 12 20a7.97 7.97 0 0 1-5.037-1.785A7.97 7.97 0 0 1 12 16.431c1.91 0 3.662.668 5.037 1.784M12 14.708A2.954 2.954 0 1 0 12 8.8a2.954 2.954 0 0 0 0 5.908"
19
+ />
20
+ </Svg>
21
+ );
22
+ const ForwardRef = forwardRef(SvgLogoAvatar);
23
+ 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 SvgLogoEruditai = (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="M14.939 10.137q.03-.288.03-.584C14.969 6.486 12.513 4 9.484 4S4 6.486 4 9.553s2.455 5.552 5.484 5.552q.33 0 .65-.039v3.867c0 .59.472 1.067 1.053 1.067h7.275a1.06 1.06 0 0 0 1.053-1.067v-7.73a1.06 1.06 0 0 0-1.053-1.066zm0 0c-.266 2.575-2.271 4.627-4.805 4.93v-3.863c0-.59.472-1.067 1.053-1.067z"
15
+ />
16
+ </Svg>
17
+ );
18
+ const ForwardRef = forwardRef(SvgLogoEruditai);
19
+ 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 SvgLogoTravelperk = (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="M13.635 6.372c.3-.296 1.566-1.118 1.833-.855.25.263-.567 1.529-.85 1.808-.283.296-.5.51-.65.658l.467 4.768-.533.526-1.6-3.65-.633.625c-.45.46-1.117.937-1.666 1.266l.083 1.644-.25.246s-.783-1.446-.816-1.48c-.017-.032-1.483-.821-1.483-.821l.25-.247 1.65.082c.332-.542.799-1.2 1.265-1.66l.617-.608-3.666-1.595.533-.526 4.8.477c.15-.165.366-.379.649-.658"
15
+ />
16
+ <Path
17
+ fill="currentColor"
18
+ d="M6.337 3.33C9.469.223 14.535.223 17.65 3.33a7.923 7.923 0 0 1 0 11.262c-3.133 3.107-8.198 3.107-11.314 0a7.95 7.95 0 0 1 0-11.262m1 10.292a6.62 6.62 0 0 0 9.33 0c2.583-2.581 2.583-6.74 0-9.289a6.62 6.62 0 0 0-9.33 0 6.537 6.537 0 0 0 0 9.29"
19
+ />
20
+ <Path
21
+ fill="currentColor"
22
+ d="M12.002 18.34c1.383 0 2.7-.279 3.932-.854a.697.697 0 0 1 .934.345c.15.345 0 .756-.35.92a10.6 10.6 0 0 1-4.516.987c-1.566 0-3.1-.329-4.515-.986a.68.68 0 0 1-.35-.921.697.697 0 0 1 .933-.345 9.5 9.5 0 0 0 3.932.855M12.002 22.5c-1.25 0-2.466-.18-3.649-.559a.716.716 0 0 1-.466-.871.71.71 0 0 1 .883-.46c1.033.328 2.132.493 3.232.493s2.166-.165 3.216-.477a.715.715 0 0 1 .883.46.69.69 0 0 1-.466.872c-1.184.361-2.4.542-3.633.542"
23
+ />
24
+ </Svg>
25
+ );
26
+ const ForwardRef = forwardRef(SvgLogoTravelperk);
27
+ 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 SvgMasonry = (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
+ d="M5 6a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1zM5 14a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1zM14 16a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1zM14 6a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1z"
15
+ />
16
+ </Svg>
17
+ );
18
+ const ForwardRef = forwardRef(SvgMasonry);
19
+ 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 SvgMaximize = (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="M13.5 10.5 19 5m0 0h-4m4 0v4M10.5 13.5 5 19m0 0h4m-4 0v-4"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgMaximize);
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 SvgMegaphone = (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="m17 6-3.033 1.213A11 11 0 0 1 9.882 8H6a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h1v2.25a1.75 1.75 0 1 0 3.5 0V15h.345c.763 0 1.52.146 2.228.43L17 17z"
16
+ />
17
+ <Path stroke="currentColor" strokeLinecap="round" d="M20 10v4" />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgMegaphone);
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 SvgMenu = (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 7h14M5 12h14M5 17h14"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgMenu);
21
+ export default ForwardRef;
@@ -0,0 +1,25 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgMessageFrown = (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
+ d="M17 6H6.857A2.857 2.857 0 0 0 4 8.857v6.272A2.87 2.87 0 0 0 6.87 18a.18.18 0 0 1 .17.123l.521 1.56a1 1 0 0 0 1.549.485l2.623-1.968a1 1 0 0 1 .6-.2H17a3 3 0 0 0 3-3V9a3 3 0 0 0-3-3Z"
15
+ />
16
+ <Path
17
+ stroke="currentColor"
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ d="m15 14-.764-.382a5 5 0 0 0-4.472 0L9 14M10 10v1M14 10v1"
21
+ />
22
+ </Svg>
23
+ );
24
+ const ForwardRef = forwardRef(SvgMessageFrown);
25
+ export default ForwardRef;
@@ -0,0 +1,25 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgMessageHeart = (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
+ d="M17 6H6.857A2.857 2.857 0 0 0 4 8.857v6.272A2.87 2.87 0 0 0 6.87 18a.18.18 0 0 1 .17.123l.521 1.56a1 1 0 0 0 1.549.485l2.623-1.968a1 1 0 0 1 .6-.2H17a3 3 0 0 0 3-3V9a3 3 0 0 0-3-3Z"
15
+ />
16
+ <Path
17
+ stroke="currentColor"
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ d="M13.439 9c1.233 0 2.061 1.117 2.061 2.16 0 2.111-3.438 3.84-3.5 3.84s-3.5-1.729-3.5-3.84c0-1.043.828-2.16 2.061-2.16.708 0 1.17.341 1.439.641.268-.3.731-.641 1.439-.641"
21
+ />
22
+ </Svg>
23
+ );
24
+ const ForwardRef = forwardRef(SvgMessageHeart);
25
+ 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 SvgMessages = (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="M14 17v-3a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v5.793a.5.5 0 0 0 .854.353L7 19h5a2 2 0 0 0 2-2M10 9V7a2 2 0 0 1 2-2h5a2 2 0 0 1 2 2v5.793a.5.5 0 0 1-.854.353L17 12h-.5"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgMessages);
21
+ 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 SvgMicrophone = (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 7a3 3 0 0 1 3-3v0a3 3 0 0 1 3 3v4a3 3 0 0 1-3 3v0a3 3 0 0 1-3-3z"
17
+ />
18
+ <Path
19
+ stroke="currentColor"
20
+ strokeLinecap="round"
21
+ d="M18 11v0a6 6 0 0 1-6 6v0a6 6 0 0 1-6-6v0M12 17v3m0 0h-2m2 0h2"
22
+ />
23
+ </Svg>
24
+ );
25
+ const ForwardRef = forwardRef(SvgMicrophone);
26
+ 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 SvgMicrophoneNegative = (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="M15 11V7a3 3 0 0 0-5.784-1.119M10.34 13.5a3 3 0 0 1-.886-.91"
17
+ />
18
+ <Path
19
+ stroke="currentColor"
20
+ strokeLinecap="round"
21
+ d="M6 11a6 6 0 0 0 7.114 5.897M18 11c0 .923-.209 1.798-.581 2.58M12 17v3m0 0h-2m2 0h2M5 5l13 13"
22
+ />
23
+ </Svg>
24
+ );
25
+ const ForwardRef = forwardRef(SvgMicrophoneNegative);
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 SvgMinimize = (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 5-5.5 5.5m0 0h4m-4 0v-4M5 19l5.5-5.5m0 0h-4m4 0v4"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgMinimize);
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 SvgMinus = (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 12H5"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgMinus);
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 SvgMobile = (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.8 4h2.4c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311C18 6.28 18 7.12 18 8.8v6.4c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311C15.72 20 14.88 20 13.2 20h-2.4c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C6 17.72 6 16.88 6 15.2V8.8c0-1.68 0-2.52.327-3.162a3 3 0 0 1 1.311-1.311C8.28 4 9.12 4 10.8 4Z"
16
+ />
17
+ <Path fill="currentColor" d="M11 16a1 1 0 1 1 2 0 1 1 0 0 1-2 0" />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgMobile);
21
+ 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 SvgMoney = (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 3h5a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3"
17
+ />
18
+ <Path
19
+ stroke="currentColor"
20
+ strokeLinecap="round"
21
+ d="M9 20h1.4c3.36 0 5.04 0 6.324-.654a6 6 0 0 0 2.622-2.622C20 15.44 20 13.76 20 10.4V9M13.5 7H11a1.5 1.5 0 0 0-1.5 1.5v0A1.5 1.5 0 0 0 11 10h1a1.5 1.5 0 0 1 1.5 1.5v0A1.5 1.5 0 0 1 12 13H9.5M11.5 7V6M11.5 14v-1"
22
+ />
23
+ </Svg>
24
+ );
25
+ const ForwardRef = forwardRef(SvgMoney);
26
+ export default ForwardRef;
@@ -0,0 +1,24 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgMoneyBag = (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
+ d="m5.55 14.121.714-4A5 5 0 0 1 11.186 6h1.628a5 5 0 0 1 4.922 4.121l.714 4A5 5 0 0 1 13.528 20h-3.056a5 5 0 0 1-4.922-5.879ZM10.326 2.5h3.348a1 1 0 0 1 .962 1.275L14 6h-4l-.636-2.225a1 1 0 0 1 .962-1.275Z"
15
+ />
16
+ <Path
17
+ stroke="currentColor"
18
+ strokeLinecap="round"
19
+ d="M14 10h-2.5a1.5 1.5 0 0 0-1.5 1.5v0a1.5 1.5 0 0 0 1.5 1.5h1a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1-1.5 1.5H10M12 16v1M12 9v1"
20
+ />
21
+ </Svg>
22
+ );
23
+ const ForwardRef = forwardRef(SvgMoneyBag);
24
+ export default ForwardRef;
@@ -0,0 +1,44 @@
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 SvgMoveDown = (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
+ d="M12.5 7H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2.5"
15
+ />
16
+ <Path
17
+ stroke="currentColor"
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ d="m8 19 2-2-2-2"
21
+ />
22
+ <Rect
23
+ width={6.7}
24
+ height={6.7}
25
+ x={0.65}
26
+ y={-0.65}
27
+ fill="currentColor"
28
+ stroke="currentColor"
29
+ rx={1.35}
30
+ transform="matrix(1 0 0 -1 12 19.7)"
31
+ />
32
+ <Rect
33
+ width={6.7}
34
+ height={6.7}
35
+ x={0.65}
36
+ y={-0.65}
37
+ stroke="currentColor"
38
+ rx={1.35}
39
+ transform="matrix(1 0 0 -1 12 9.7)"
40
+ />
41
+ </Svg>
42
+ );
43
+ const ForwardRef = forwardRef(SvgMoveDown);
44
+ export default ForwardRef;
@@ -0,0 +1,34 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgMoveTop = (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
+ d="M13 19H7a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2.8"
15
+ />
16
+ <Path
17
+ stroke="currentColor"
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ d="m8 3 2 2-2 2"
21
+ />
22
+ <Path
23
+ fill="currentColor"
24
+ stroke="currentColor"
25
+ d="M14 2.65h4c.746 0 1.35.604 1.35 1.35v2A1.35 1.35 0 0 1 18 7.35h-4A1.35 1.35 0 0 1 12.65 6V4c0-.746.604-1.35 1.35-1.35Z"
26
+ />
27
+ <Path
28
+ stroke="currentColor"
29
+ d="M14 9.65h4c.746 0 1.35.604 1.35 1.35v2A1.35 1.35 0 0 1 18 14.35h-4A1.35 1.35 0 0 1 12.65 13v-2c0-.746.604-1.35 1.35-1.35ZM14 16.65h4c.746 0 1.35.604 1.35 1.35v2A1.35 1.35 0 0 1 18 21.35h-4A1.35 1.35 0 0 1 12.65 20v-2c0-.746.604-1.35 1.35-1.35Z"
30
+ />
31
+ </Svg>
32
+ );
33
+ const ForwardRef = forwardRef(SvgMoveTop);
34
+ export default ForwardRef;
@@ -0,0 +1,42 @@
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 SvgMoveUp = (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
+ d="M12.5 17H7a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2.5"
15
+ />
16
+ <Path
17
+ stroke="currentColor"
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ d="m8 5 2 2-2 2"
21
+ />
22
+ <Rect
23
+ width={6.7}
24
+ height={6.7}
25
+ x={12.65}
26
+ y={3.65}
27
+ fill="currentColor"
28
+ stroke="currentColor"
29
+ rx={1.35}
30
+ />
31
+ <Rect
32
+ width={6.7}
33
+ height={6.7}
34
+ x={12.65}
35
+ y={13.65}
36
+ stroke="currentColor"
37
+ rx={1.35}
38
+ />
39
+ </Svg>
40
+ );
41
+ const ForwardRef = forwardRef(SvgMoveUp);
42
+ 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 SvgOffice = (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="M6 7a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3v12a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zM10 12h4M10 8h4"
17
+ />
18
+ <Path
19
+ stroke="currentColor"
20
+ d="M10 16.5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1V20h-4z"
21
+ />
22
+ <Path
23
+ stroke="currentColor"
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ d="M19 20H5"
27
+ />
28
+ </Svg>
29
+ );
30
+ const ForwardRef = forwardRef(SvgOffice);
31
+ 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 SvgOlList = (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 4v6M13 7h6M13 12h6M13 17h6M5 14a2 2 0 0 1 2-2v0a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2v0a2 2 0 0 0-2 2v1h4M5 6c1 0 2-1 2-2"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgOlList);
21
+ 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 SvgPalmTree = (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="m12 12 5.954 2.977c.024.012.054 0 .062-.027.461-1.446-.003-2.888-.943-3.908-.027-.029-.007-.077.033-.077h2.849c.025 0 .045-.02.045-.044-.03-1.448-1.508-3.385-4.905-3.42-.038 0-.06-.045-.037-.074l1.924-2.405a.04.04 0 0 0 .005-.047c-.53-.983-3.004-1.458-4.987.525M12 12l-5.954 2.977a.045.045 0 0 1-.062-.027c-.461-1.446.003-2.888.943-3.908.027-.029.007-.077-.033-.077H4.045A.044.044 0 0 1 4 10.921c.03-1.448 1.508-3.385 4.905-3.42.038 0 .06-.045.037-.074L7.018 5.022a.04.04 0 0 1-.005-.047c.53-.983 3.004-1.458 4.987.525M8 19h8m-2.5-6 .5 6m-3.5-6-.5 6"
16
+ />
17
+ </Svg>
18
+ );
19
+ const ForwardRef = forwardRef(SvgPalmTree);
20
+ 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 SvgPaperclip = (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="m15 11-5 5a1.414 1.414 0 0 1-2 0v0a1.414 1.414 0 0 1 0-2l7-7a2.83 2.83 0 0 1 4 0v0a2.83 2.83 0 0 1 0 4l-7 7a4.243 4.243 0 0 1-6 0v0a4.243 4.243 0 0 1 0-6l5-5"
16
+ />
17
+ </Svg>
18
+ );
19
+ const ForwardRef = forwardRef(SvgPaperclip);
20
+ export default ForwardRef;