@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,73 @@
1
+ import { render } from "@testing-library/react-native";
2
+ import React from "react";
3
+ import { DetailsItemsList, DetailsItemsListProps } from ".";
4
+
5
+ jest.mock("expo-clipboard", () => ({
6
+ setString: jest.fn(),
7
+ getString: jest.fn(),
8
+ }));
9
+
10
+ describe("DetailsItemsList", () => {
11
+ it("Snapshot ", () => {
12
+ const content: DetailsItemsListProps = {
13
+ title: "Details",
14
+ details: [
15
+ {
16
+ title: "Legal entity",
17
+ content: {
18
+ type: "item",
19
+ text: "Everyday Software SL",
20
+ action: {
21
+ type: "copy",
22
+ },
23
+ },
24
+ },
25
+ {
26
+ title: "Manager",
27
+ content: {
28
+ type: "person",
29
+ firstName: "Saul",
30
+ lastName: "Dominguez",
31
+ avatarUrl: "https://github.com/sauldom102.png",
32
+ action: {
33
+ type: "generic",
34
+ handlePress: () => console.log("Its work"),
35
+ },
36
+ },
37
+ },
38
+ {
39
+ title: "Teams",
40
+ content: [
41
+ {
42
+ type: "team",
43
+ name: "Management",
44
+ action: {
45
+ type: "generic",
46
+ handlePress: () => console.log("Its work"),
47
+ },
48
+ },
49
+ {
50
+ type: "team",
51
+ name: "Engineering",
52
+ action: {
53
+ type: "generic",
54
+ handlePress: () => console.log("Its work"),
55
+ },
56
+ },
57
+ ],
58
+ },
59
+ {
60
+ title: "Type",
61
+ content: {
62
+ type: "dot-tag",
63
+ text: "Holidays",
64
+ customColor: "#07A2AD",
65
+ },
66
+ },
67
+ ],
68
+ };
69
+
70
+ const { toJSON } = render(<DetailsItemsList {...content} />);
71
+ expect(toJSON()).toMatchSnapshot();
72
+ });
73
+ });
@@ -0,0 +1,52 @@
1
+ import React from "react";
2
+ import { DetailsItem, DetailsItemType } from "../DetailsItem";
3
+ import { cn } from "../../../../lib/utils";
4
+ import { View, Text } from "react-native";
5
+
6
+ export interface DetailsItemsListProps {
7
+ title?: string;
8
+ tableView?: boolean;
9
+ isHorizontalItem?: boolean;
10
+ details: DetailsItemType[];
11
+ }
12
+
13
+ export const DetailsItemsList = function DetailsItemList({
14
+ title,
15
+ tableView = false,
16
+ isHorizontalItem = false,
17
+ details,
18
+ }: DetailsItemsListProps) {
19
+ return (
20
+ <View className="flex gap-4">
21
+ {!!title && (
22
+ <Text className="mb-1 pl-1.5 text-sm font-semibold text-f1-foreground-secondary">
23
+ {title.toLocaleUpperCase()}
24
+ </Text>
25
+ )}
26
+ <View
27
+ className={cn(
28
+ "flex",
29
+ tableView
30
+ ? "rounded-[16px] border border-solid border-f1-border-secondary"
31
+ : "gap-3",
32
+ )}
33
+ >
34
+ {details?.map((item, index) => (
35
+ <React.Fragment key={item.title}>
36
+ <DetailsItem
37
+ title={item.title}
38
+ key={item.title}
39
+ content={item.content}
40
+ spacingAtTheBottom={item.spacingAtTheBottom}
41
+ tableView={tableView}
42
+ isHorizontalItem={isHorizontalItem}
43
+ />
44
+ {tableView && index !== details.length - 1 && (
45
+ <View className="h-[1px] w-full bg-f1-border-secondary" />
46
+ )}
47
+ </React.Fragment>
48
+ ))}
49
+ </View>
50
+ </View>
51
+ );
52
+ };
@@ -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 SvgAcademicCap = (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="m3.16 8.536 8.654-3.462a.5.5 0 0 1 .372 0l8.653 3.462a.5.5 0 0 1 0 .928l-8.653 3.462a.5.5 0 0 1-.372 0L3.161 9.464a.5.5 0 0 1 0-.928Z"
16
+ />
17
+ <Path
18
+ stroke="currentColor"
19
+ strokeLinejoin="round"
20
+ d="M19 10v5.67a.5.5 0 0 1-.303.46l-6.5 2.786a.5.5 0 0 1-.394 0l-6.5-2.786A.5.5 0 0 1 5 15.67V10"
21
+ />
22
+ <Path
23
+ stroke="currentColor"
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ d="m12 9 4 2v2.5"
27
+ />
28
+ </Svg>
29
+ );
30
+ const ForwardRef = forwardRef(SvgAcademicCap);
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 SvgAdd = (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 5v14M12 12H5h14"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgAdd);
21
+ 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 SvgAi = (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 13c3.314 0 6-3.134 6-7 0 3.866 2.686 7 6 7-3.314 0-6 3.134-6 7 0-3.866-2.686-7-6-7Z"
16
+ />
17
+ <Path
18
+ fill="currentColor"
19
+ d="M17.5 3.35a.65.65 0 0 1 .65.65A1.85 1.85 0 0 0 20 5.85a.65.65 0 1 1 0 1.3A1.85 1.85 0 0 0 18.15 9a.65.65 0 1 1-1.3 0A1.85 1.85 0 0 0 15 7.15a.65.65 0 1 1 0-1.3A1.85 1.85 0 0 0 16.85 4a.65.65 0 0 1 .65-.65"
20
+ />
21
+ </Svg>
22
+ );
23
+ const ForwardRef = forwardRef(SvgAi);
24
+ export default ForwardRef;
@@ -0,0 +1,16 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgAlert = (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="M12 14V7M12 17.1V17" />
13
+ </Svg>
14
+ );
15
+ const ForwardRef = forwardRef(SvgAlert);
16
+ 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 SvgAlertCircle = (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="M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16m-.967-11.94a.97.97 0 1 1 1.935 0l-.303 3.9a.667.667 0 0 1-1.33 0zM13 15a1 1 0 1 1-2 0 1 1 0 0 1 2 0"
15
+ />
16
+ </Svg>
17
+ );
18
+ const ForwardRef = forwardRef(SvgAlertCircle);
19
+ export default ForwardRef;
@@ -0,0 +1,17 @@
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 SvgAlertCircleLine = (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 stroke="currentColor" strokeLinecap="round" d="M12 12V9M12 15.1V15" />
14
+ </Svg>
15
+ );
16
+ const ForwardRef = forwardRef(SvgAlertCircleLine);
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 SvgAlignTextCenter = (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 8h14M5 12h14M9 16h6"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgAlignTextCenter);
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 SvgAlignTextJustify = (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 8h14M5 12h14M5 16h14"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgAlignTextJustify);
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 SvgAlignTextLeft = (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 8h14M5 12h14M5 16h6"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgAlignTextLeft);
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 SvgAlignTextRight = (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 8h14M5 12h14M13 16h6"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgAlignTextRight);
21
+ export default ForwardRef;
@@ -0,0 +1,33 @@
1
+ import Svg, { Mask, Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgAppearance = (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
+ <Mask id="appearance_svg__a" fill="currentColor">
13
+ <Path
14
+ fillRule="evenodd"
15
+ d="M12 18.7V5.3a6.7 6.7 0 1 0 0 13.4m1.612-14.537a8 8 0 0 0-.614-.101h-.001a8 8 0 1 0 .615.101"
16
+ clipRule="evenodd"
17
+ />
18
+ </Mask>
19
+ <Path
20
+ fill="currentColor"
21
+ fillRule="evenodd"
22
+ d="M12 18.7V5.3a6.7 6.7 0 1 0 0 13.4m1.612-14.537a8 8 0 0 0-.614-.101h-.001a8 8 0 1 0 .615.101"
23
+ clipRule="evenodd"
24
+ />
25
+ <Path
26
+ fill="currentColor"
27
+ d="M12 5.3h1.3V4H12zm0 13.4V20h1.3v-1.3zm1.612-14.537-.26 1.273zm-.614-.101-.16 1.29zm-.001 0-.16 1.29zm.001 15.876-.16-1.29zM10.7 5.3v13.4h2.6V5.3zM12 4a8 8 0 0 0-8 8h2.6A5.4 5.4 0 0 1 12 6.6zm-8 8a8 8 0 0 0 8 8v-2.6A5.4 5.4 0 0 1 6.6 12zm9.873-9.111a9 9 0 0 0-.714-.117l-.322 2.58q.261.032.515.084zm-.714-.117h-.003l-.318 2.58zm-.002 0A9 9 0 0 0 12 2.7v2.6q.426 0 .837.052zM12 2.7A9.3 9.3 0 0 0 2.7 12h2.6c0-3.7 3-6.7 6.7-6.7zM2.7 12a9.3 9.3 0 0 0 9.3 9.3v-2.6c-3.7 0-6.7-3-6.7-6.7zm9.3 9.3a9 9 0 0 0 1.159-.072l-.322-2.58A7 7 0 0 1 12 18.7zm1.159-.072c4.59-.57 8.141-4.484 8.141-9.228h-2.6a6.7 6.7 0 0 1-5.862 6.648zM21.3 12c0-4.496-3.189-8.244-7.427-9.111l-.521 2.547A6.7 6.7 0 0 1 18.7 12z"
28
+ mask="url(#appearance_svg__a)"
29
+ />
30
+ </Svg>
31
+ );
32
+ const ForwardRef = forwardRef(SvgAppearance);
33
+ 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 SvgArchive = (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 9V7a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1M5 15v-5h14v5a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3M14 14h-4"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgArchive);
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 SvgArchiveOpen = (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="m3.876 10.008-.252-2.016a1 1 0 0 1 .868-1.116l14.016-1.752a1 1 0 0 1 1.116.868l.252 2.016a1 1 0 0 1-.868 1.116L4.992 10.876a1 1 0 0 1-1.116-.868M19 12v3a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3v-4M14 14h-4"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgArchiveOpen);
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 SvgArrowCycle = (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.038 4.998a7.002 7.002 0 0 0-4.932 12.01m9.788-10.015a7 7 0 0 1 1.345 1.833 7.002 7.002 0 0 1-6.277 10.176"
17
+ />
18
+ <Path
19
+ stroke="currentColor"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ d="m8.516 15.426-.58 2.769-2.768-.58M16.14 9.236l.58-2.769 2.768.579"
23
+ />
24
+ </Svg>
25
+ );
26
+ const ForwardRef = forwardRef(SvgArrowCycle);
27
+ 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 SvgArrowDown = (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="m18 13-6 6-6-6"
17
+ />
18
+ <Path
19
+ stroke="currentColor"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ d="M12 5v13.5"
23
+ />
24
+ </Svg>
25
+ );
26
+ const ForwardRef = forwardRef(SvgArrowDown);
27
+ 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 SvgArrowLeft = (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 18-6-6 6-6M19 12H5.5"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgArrowLeft);
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 SvgArrowRight = (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 6 6 6-6 6M5 12h13.5"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgArrowRight);
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 SvgArrowUp = (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 11 6-6 6 6M12 19V5.5"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgArrowUp);
21
+ export default ForwardRef;
@@ -0,0 +1,20 @@
1
+ import Svg, { Rect, Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgBank = (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
+ <Rect width={16} height={4} x={4} y={16} stroke="currentColor" rx={1} />
13
+ <Path
14
+ stroke="currentColor"
15
+ d="M4 5.78a1 1 0 0 1 .757-.97l7-1.75a1 1 0 0 1 .486 0l7 1.75a1 1 0 0 1 .757.97V8a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1zM6 9v7M18 9v7M14 9v7M10 9v7"
16
+ />
17
+ </Svg>
18
+ );
19
+ const ForwardRef = forwardRef(SvgBank);
20
+ export default ForwardRef;
@@ -0,0 +1,21 @@
1
+ import Svg, { Rect, Path } from "react-native-svg";
2
+ import type { SvgProps } from "react-native-svg";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgBarGraph = (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
+ <Rect width={16} height={12} x={4} y={6} stroke="currentColor" rx={3} />
13
+ <Path
14
+ stroke="currentColor"
15
+ strokeLinecap="round"
16
+ d="M8 13v2M12 9v6M16 11v4"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgBarGraph);
21
+ 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 SvgBell = (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="M9.764 18c.549.614 1.347 1 2.236 1 .888 0 1.687-.386 2.236-1"
16
+ />
17
+ <Path
18
+ stroke="currentColor"
19
+ d="M12 4a5 5 0 0 0-5 5v.726c0 .175-.07.344-.194.468l-.774.774A2.362 2.362 0 0 0 7.702 15h8.596a2.362 2.362 0 0 0 1.67-4.032l-.774-.774A.66.66 0 0 1 17 9.726V9a5 5 0 0 0-5-5Z"
20
+ />
21
+ </Svg>
22
+ );
23
+ const ForwardRef = forwardRef(SvgBell);
24
+ 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 SvgBold = (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 11.5a3 3 0 1 0 0-6H9a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h6"
15
+ />
16
+ <Path
17
+ stroke="currentColor"
18
+ d="M14.833 18.5c2.025 0 3.667-1.567 3.667-3.5s-1.642-3.5-3.667-3.5H7.5"
19
+ />
20
+ </Svg>
21
+ );
22
+ const ForwardRef = forwardRef(SvgBold);
23
+ 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 SvgBookOpen = (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 7.5c3-2.005 5.5-2 8 0v9.42c0 .838-.998 1.324-1.771 1-1.933-.811-3.935-.453-6.229 1.08m0-11.5c-3-2.005-5.5-2-8 0v9.42c0 .838.998 1.324 1.771 1C7.704 17.109 9.706 17.467 12 19m0-11.5V19"
17
+ />
18
+ </Svg>
19
+ );
20
+ const ForwardRef = forwardRef(SvgBookOpen);
21
+ export default ForwardRef;